| 1234567891011121314151617181920212223242526272829 |
- <?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',
- 'available_qty' => 'integer',
- 'year' => 'integer',
- ];
- /**
- * @deprecated Используйте available_qty
- */
- public function getRemainingQuantityAttribute(): int
- {
- return $this->available_qty ?? 0;
- }
- }
|