31 lines
736 B
PHP
31 lines
736 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Attributes\Fillable;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
use App\Enums\ServiceType;
|
|
use App\Enums\ContractStatus;
|
|
|
|
#[Fillable(['product_id', 'service_type', 'status', 'actual_collection_date', 'remark'])]
|
|
class ProductService extends Model
|
|
{
|
|
protected $table = 'product_services';
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'service_type' => ServiceType::class,
|
|
'status' => ContractStatus::class,
|
|
'actual_collection_date' => 'date',
|
|
];
|
|
}
|
|
|
|
public function product(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Product::class);
|
|
}
|
|
}
|