| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\Models;
- use App\Models\Scopes\YearScope;
- use Illuminate\Database\Eloquent\Attributes\ScopedBy;
- use Illuminate\Database\Eloquent\Model;
- #[ScopedBy([YearScope::class])]
- class MafOrdersView extends Model
- {
- const DEFAULT_SORT_BY = 'created_at';
- protected $table = 'maf_orders_view';
- protected $fillable = [
- 'id',
- 'year',
- 'order_number',
- 'status',
- 'user_id',
- 'product_id',
- 'quantity',
- 'in_stock',
- 'user_name',
- 'article',
- 'nomenclature_number',
- 'name_tz',
- 'type',
- 'manufacturer_name',
- ];
- }
|