160 lines
6.0 KiB
PHP
160 lines
6.0 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources;
|
|
|
|
use App\Filament\Exports\CompanyExporter;
|
|
use App\Filament\Imports\CompanyImporter;
|
|
use App\Filament\Resources\CompanyResource\Pages;
|
|
use App\Filament\Resources\CompanyResource\RelationManagers\PlantsRelationManager;
|
|
use App\Models\Company;
|
|
use Filament\Actions\Imports\Importer;
|
|
use Filament\Facades\Filament;
|
|
use Filament\Forms;
|
|
use Filament\Forms\Form;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Actions\ImportAction;
|
|
use Filament\Tables\Table;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
|
use Filament\Forms\Components\Section;
|
|
use Filament\Tables\Actions\ExportAction;
|
|
|
|
class CompanyResource extends Resource
|
|
{
|
|
protected static ?string $model = Company::class;
|
|
|
|
protected static ?string $navigationIcon = 'heroicon-s-home-modern';
|
|
|
|
protected static ?string $navigationGroup = 'Master Entries';
|
|
|
|
protected static ?int $navigationSort = 1;
|
|
|
|
public static function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
Section::make('')
|
|
->schema([
|
|
Forms\Components\TextInput::make('name')
|
|
->required()
|
|
//->citext('name')
|
|
->placeholder('Scan the valid name')
|
|
->autofocus(true)
|
|
->unique(ignoreRecord: true)
|
|
->columnSpanFull()
|
|
->reactive()
|
|
->afterStateUpdated(function ($state, callable $set, callable $get) {
|
|
$companyId = $get('name');
|
|
// Ensure `linestop_id` is not cleared
|
|
if (!$companyId) {
|
|
$set('cNameError', 'Scan the valid name first.');
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
$set('cNameError', null);
|
|
}
|
|
})
|
|
->extraAttributes(fn ($get) => [
|
|
'class' => $get('cNameError') ? 'border-red-500' : '',
|
|
])
|
|
->hint(fn ($get) => $get('cNameError') ? $get('cNameError') : null)
|
|
->hintColor('danger'),
|
|
])
|
|
->columns(2),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
// Tables\Columns\TextColumn::make('id')
|
|
// ->label('ID')
|
|
// ->numeric()
|
|
// ->sortable(),
|
|
Tables\Columns\TextColumn::make('No.')
|
|
->label('No.')
|
|
->getStateUsing(function ($record, $livewire, $column, $rowLoop) {
|
|
$paginator = $livewire->getTableRecords();
|
|
$perPage = method_exists($paginator, 'perPage') ? $paginator->perPage() : 10;
|
|
$currentPage = method_exists($paginator, 'currentPage') ? $paginator->currentPage() : 1;
|
|
return ($currentPage - 1) * $perPage + $rowLoop->iteration;
|
|
}),
|
|
Tables\Columns\TextColumn::make('name')
|
|
->label('Company')
|
|
->alignCenter()
|
|
->sortable()
|
|
->searchable(),
|
|
Tables\Columns\TextColumn::make('created_at')
|
|
->label('Created At')
|
|
->dateTime()
|
|
->alignCenter()
|
|
->sortable(),
|
|
Tables\Columns\TextColumn::make('updated_at')
|
|
->label('Updated At')
|
|
->dateTime()
|
|
->alignCenter()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
Tables\Columns\TextColumn::make('deleted_at')
|
|
->label('Deleted At')
|
|
->dateTime()
|
|
->alignCenter()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
])
|
|
->filters([
|
|
Tables\Filters\TrashedFilter::make(),
|
|
])
|
|
->actions([
|
|
Tables\Actions\EditAction::make(),
|
|
Tables\Actions\ViewAction::make(),
|
|
])
|
|
->bulkActions([
|
|
Tables\Actions\BulkActionGroup::make([
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
Tables\Actions\ForceDeleteBulkAction::make(),
|
|
Tables\Actions\RestoreBulkAction::make(),
|
|
]),
|
|
])
|
|
->headerActions([
|
|
ImportAction::make()
|
|
->importer(CompanyImporter::class)
|
|
->visible(function() {
|
|
return Filament::auth()->user()->can('view import company');
|
|
}),
|
|
ExportAction::make()
|
|
->exporter(CompanyExporter::class)
|
|
->visible(function() {
|
|
return Filament::auth()->user()->can('view export company');
|
|
}),
|
|
]);
|
|
}
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
PlantsRelationManager::class,
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListCompanies::route('/'),
|
|
'create' => Pages\CreateCompany::route('/create'),
|
|
'view' => Pages\ViewCompany::route('/{record}'),
|
|
'edit' => Pages\EditCompany::route('/{record}/edit'),
|
|
];
|
|
}
|
|
|
|
public static function getEloquentQuery(): Builder
|
|
{
|
|
return parent::getEloquentQuery()
|
|
->withoutGlobalScopes([
|
|
SoftDeletingScope::class,
|
|
]);
|
|
}
|
|
}
|