20 lines
461 B
PHP
20 lines
461 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\PrensillaResource\Pages;
|
|
|
|
use App\Filament\Resources\PrensillaResource;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreatePrensilla extends CreateRecord
|
|
{
|
|
protected static string $resource = PrensillaResource::class;
|
|
|
|
protected function mutateFormDataBeforeCreate(array $data): array
|
|
{
|
|
$data['fecha_envio'] = now();
|
|
$data['tipo'] = 'Presilla';
|
|
|
|
return $data;
|
|
}
|
|
}
|