SparePartOrdersView.php 425 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class SparePartOrdersView extends Model
  5. {
  6. protected $table = 'spare_part_orders_view';
  7. public $timestamps = false;
  8. const DEFAULT_SORT_BY = 'created_at';
  9. protected $casts = [
  10. 'with_documents' => 'boolean',
  11. 'ordered_quantity' => 'integer',
  12. 'remaining_quantity' => 'integer',
  13. 'year' => 'integer',
  14. ];
  15. }