up
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace App\Filament\Resources\TintoreriaResource\RelationManagers;
|
||||
|
||||
use Filament\Resources\RelationManagers\RelationManager;
|
||||
use Filament\Tables;
|
||||
use Filament\Tables\Columns\TextColumn;
|
||||
|
||||
class AjustesRelationManager extends RelationManager
|
||||
{
|
||||
protected static string $relationship = 'ajustes';
|
||||
protected static ?string $recordTitleAttribute = 'id';
|
||||
|
||||
public function table(Tables\Table $table): Tables\Table
|
||||
{
|
||||
return $table
|
||||
->columns([
|
||||
TextColumn::make('id')->label('#'),
|
||||
TextColumn::make('tipo')->label('Tipo'),
|
||||
TextColumn::make('cantidad')->label('Cantidad'),
|
||||
TextColumn::make('usuario.name')->label('Usuario'),
|
||||
TextColumn::make('notas')->limit(80)->wrap(),
|
||||
TextColumn::make('created_at')->label('Fecha')->dateTime(),
|
||||
])
|
||||
->filters([])
|
||||
->headerActions([
|
||||
Tables\Actions\CreateAction::make()->form([
|
||||
\Filament\Forms\Components\TextInput::make('cantidad')->numeric()->required()->minValue(1),
|
||||
\Filament\Forms\Components\Textarea::make('notas'),
|
||||
])->action(function (array $data) {
|
||||
$owner = $this->getOwnerRecord();
|
||||
try {
|
||||
$owner->registerReproceso((int)$data['cantidad'], $data['notas'] ?? null, auth()->id() ?? null);
|
||||
\Filament\Notifications\Notification::make()->success()->title('Reproceso registrado')->send();
|
||||
} catch (\Throwable $e) {
|
||||
\Filament\Notifications\Notification::make()->danger()->title('Error')->body($e->getMessage())->send();
|
||||
}
|
||||
}),
|
||||
])
|
||||
->actions([])
|
||||
->bulkActions([]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user