60 lines
2.2 KiB
PHP
60 lines
2.2 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Filament\Resources\ContactMessages;
|
||
|
|
|
||
|
|
use App\Filament\Resources\ContactMessages\Pages\ListContactMessages;
|
||
|
|
use App\Filament\Resources\ContactMessages\Pages\ViewContactMessage;
|
||
|
|
use App\Models\ContactMessage;
|
||
|
|
use Filament\Resources\Resource;
|
||
|
|
use Filament\Schemas\Schema;
|
||
|
|
use Filament\Tables\Table;
|
||
|
|
use Filament\Actions\ViewAction;
|
||
|
|
use Filament\Actions\BulkActionGroup;
|
||
|
|
use Filament\Actions\DeleteBulkAction;
|
||
|
|
use Filament\Tables\Columns\TextColumn;
|
||
|
|
use Filament\Tables\Filters\Filter;
|
||
|
|
use Illuminate\Database\Eloquent\Builder;
|
||
|
|
|
||
|
|
class ContactMessageResource extends Resource
|
||
|
|
{
|
||
|
|
protected static ?string $model = ContactMessage::class;
|
||
|
|
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-envelope';
|
||
|
|
protected static string|\UnitEnum|null $navigationGroup = 'Konten';
|
||
|
|
protected static ?string $modelLabel = 'Pesan Masuk';
|
||
|
|
|
||
|
|
public static function form(Schema $form): Schema
|
||
|
|
{
|
||
|
|
return $form->schema([]);
|
||
|
|
}
|
||
|
|
|
||
|
|
public static function table(Table $table): Table
|
||
|
|
{
|
||
|
|
return $table
|
||
|
|
->columns([
|
||
|
|
TextColumn::make('name')->label('Nama')->searchable(),
|
||
|
|
TextColumn::make('subject')->label('Subjek')->searchable()->limit(40),
|
||
|
|
TextColumn::make('email')->label('Email'),
|
||
|
|
TextColumn::make('phone')->label('Telepon')->default('-'),
|
||
|
|
TextColumn::make('read_at')->label('Dibaca')
|
||
|
|
->badge()
|
||
|
|
->state(fn ($record) => $record->read_at ? 'Sudah dibaca' : 'Belum dibaca')
|
||
|
|
->color(fn ($record) => $record->read_at ? 'success' : 'warning'),
|
||
|
|
TextColumn::make('created_at')->label('Diterima')->dateTime('d M Y H:i')->sortable(),
|
||
|
|
])
|
||
|
|
->defaultSort('created_at', 'desc')
|
||
|
|
->recordActions([
|
||
|
|
ViewAction::make()
|
||
|
|
->after(fn ($record) => $record->read_at ?? $record->update(['read_at' => now()])),
|
||
|
|
])
|
||
|
|
->toolbarActions([BulkActionGroup::make([DeleteBulkAction::make()])]);
|
||
|
|
}
|
||
|
|
|
||
|
|
public static function getPages(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'index' => ListContactMessages::route('/'),
|
||
|
|
'view' => ViewContactMessage::route('/{record}'),
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|