- Updated JournalistResource to conditionally display actions based on user roles and verification status. - Modified ManageJournalists page to hide header actions if verification request status is not NEED_REVISION. - Changed CategoryResource navigation label from 'Kategori Berita' to 'Kategori'. - Adjusted ManageCategories page to reflect the new category label and modal headings. - Refactored Company model to change verificationRequest relationship from MorphOne to HasOne. - Removed verificationRequest method from Journalist and PartnerMedia models. - Updated VerificationRequest model to change verifiable relationship from MorphTo to BelongsTo. - Introduced VerificationService to handle verification logic, including data completeness checks and submission processes. - Created a new migration to adjust the verification_requests table structure. - Enhanced admin verification view to display detailed verification progress and review history. - Updated company and media forms to conditionally show the save button based on verification request status.
71 lines
1.9 KiB
PHP
71 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\MediaClassification;
|
|
use App\Enums\MediaType;
|
|
use App\Enums\VerificationStatus;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Spatie\MediaLibrary\HasMedia;
|
|
use Spatie\MediaLibrary\InteractsWithMedia;
|
|
|
|
class PartnerMedia extends Model implements HasMedia
|
|
{
|
|
use HasFactory, InteractsWithMedia, SoftDeletes;
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'type' => MediaType::class,
|
|
'classification' => MediaClassification::class,
|
|
'status' => VerificationStatus::class,
|
|
];
|
|
}
|
|
|
|
public function company(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Company::class);
|
|
}
|
|
|
|
public function journalists(): HasMany
|
|
{
|
|
return $this->hasMany(Journalist::class);
|
|
}
|
|
|
|
public function announcements(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Announcement::class, 'announcement_media');
|
|
}
|
|
|
|
public function cooperationProposals(): HasMany
|
|
{
|
|
return $this->hasMany(CooperationProposal::class);
|
|
}
|
|
|
|
public function taskAssignments(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(TaskAssignment::class, 'task_assignment_media')
|
|
->withPivot(['status'])
|
|
->withTimestamps();
|
|
}
|
|
|
|
public function cooperations(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Cooperation::class, 'cooperation_media')
|
|
->withPivot(['status'])
|
|
->withTimestamps();
|
|
}
|
|
|
|
public function cooperationMedias(): HasMany
|
|
{
|
|
return $this->hasMany(CooperationMedia::class);
|
|
}
|
|
}
|