Files
ghostpizza/app/Filament/Resources/Ingredients/Pages/CreateIngredient.php
2025-10-11 17:02:49 +02:00

12 lines
278 B
PHP

<?php
namespace App\Filament\Resources\Ingredients\Pages;
use App\Filament\Resources\Ingredients\IngredientResource;
use Filament\Resources\Pages\CreateRecord;
class CreateIngredient extends CreateRecord
{
protected static string $resource = IngredientResource::class;
}