feat: anggota dapat menulis artikel dengan workflow approval sebelum diterbitkan

This commit is contained in:
2026-04-03 06:48:06 +07:00
parent 5d14b55173
commit a7e10600d4
12 changed files with 339 additions and 10 deletions
@@ -0,0 +1,19 @@
<?php
namespace App\Filament\Resources\MyPosts\Pages;
use App\Filament\Resources\MyPosts\MyPostResource;
use Filament\Actions\DeleteAction;
use Filament\Resources\Pages\EditRecord;
class EditMyPost extends EditRecord
{
protected static string $resource = MyPostResource::class;
protected function getHeaderActions(): array
{
return [
DeleteAction::make(),
];
}
}