41 lines
911 B
PHP
41 lines
911 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\ApprovalStatus;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\MorphMany;
|
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
|
|
|
class MediaTaskAssignment extends Pivot
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'media_task_assignment';
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'status' => ApprovalStatus::class,
|
|
];
|
|
}
|
|
|
|
public function taskAssignment(): BelongsTo
|
|
{
|
|
return $this->belongsTo(TaskAssignment::class);
|
|
}
|
|
|
|
public function partnerMedia(): BelongsTo
|
|
{
|
|
return $this->belongsTo(PartnerMedia::class);
|
|
}
|
|
|
|
public function rejectionReasons(): MorphMany
|
|
{
|
|
return $this->morphMany(RejectionReason::class, 'rejectable');
|
|
}
|
|
}
|