Renamed TintoreriaProcesoResource, model, and migration to Tintoreria, updating all related references and page classes. Added preload to Select fields for better performance in forms. This change standardizes naming and improves resource management for tintoreria processes.
13 lines
295 B
PHP
13 lines
295 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\TintoreriaResource\Pages;
|
|
|
|
use App\Filament\Resources\TintoreriaResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateTintoreria extends CreateRecord
|
|
{
|
|
protected static string $resource = TintoreriaResource::class;
|
|
}
|