- Departments + cross-department transfer workflow - Role-based closing (staff→resolved, manager→closed) with proof_of_resolution - Private file storage with collection system + temporary signed URLs - Dashboard: resolved tickets table, stats, handler performance bar chart - Spatie RBAC (admin/manager/staff) - Notifications: TicketTransferred, TicketClosed (database + mail) - Pest tests: 8 tests, 21 assertions - Docker production-ready (Dockerfile + compose + entrypoint)
59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Feedback;
|
|
|
|
use App\Filament\Resources\Feedback\Pages\CreateFeedback;
|
|
use App\Filament\Resources\Feedback\Pages\EditFeedback;
|
|
use App\Filament\Resources\Feedback\Pages\ListFeedback;
|
|
use App\Filament\Resources\Feedback\RelationManagers\InteractionsRelationManager;
|
|
use App\Filament\Resources\Feedback\Schemas\FeedbackForm;
|
|
use App\Filament\Resources\Feedback\Tables\FeedbackTable;
|
|
use App\Models\Feedback;
|
|
use BackedEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Table;
|
|
|
|
class FeedbackResource extends Resource
|
|
{
|
|
protected static ?string $model = Feedback::class;
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedChatBubbleLeftRight;
|
|
|
|
protected static ?string $pluralLabel = 'Feedbacks';
|
|
|
|
protected static ?int $navigationSort = 1;
|
|
|
|
public static function getNavigationGroup(): ?string
|
|
{
|
|
return 'Customer Care';
|
|
}
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return FeedbackForm::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return FeedbackTable::configure($table);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
InteractionsRelationManager::class,
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListFeedback::route('/'),
|
|
'create' => CreateFeedback::route('/create'),
|
|
'edit' => EditFeedback::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|