| 123456789101112131415161718192021 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class SparePartOrdersView extends Model
- {
- protected $table = 'spare_part_orders_view';
- public $timestamps = false;
- const DEFAULT_SORT_BY = 'created_at';
- protected $casts = [
- 'with_documents' => 'boolean',
- 'ordered_quantity' => 'integer',
- 'remaining_quantity' => 'integer',
- 'year' => 'integer',
- ];
- }
|