32 lines
956 B
PHP
32 lines
956 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Manage\Cooperations\Pages;
|
|
|
|
use App\Filament\Actions\BackAction;
|
|
use App\Filament\Resources\Manage\Cooperations\CooperationResource;
|
|
use App\Filament\Support\CheerfulNotification;
|
|
use Filament\Resources\Pages\ViewRecord;
|
|
|
|
class ViewCooperation extends ViewRecord
|
|
{
|
|
protected static string $resource = CooperationResource::class;
|
|
|
|
public function getTitle(): string
|
|
{
|
|
return CheerfulNotification::getMessage('Detail Kerja Sama 🤝✨', 'Detail Data Kerja Sama');
|
|
}
|
|
|
|
public function getSubheading(): ?string
|
|
{
|
|
return CheerfulNotification::getMessage('Cek detail jalinan kerja sama kita agar semuanya makin mantap! 📂🤝', 'Halaman ini menyajikan detail rincian data kerja sama yang dipilih.');
|
|
}
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
BackAction::make()
|
|
->url(ListCooperations::getUrl()),
|
|
];
|
|
}
|
|
}
|