17 lines
293 B
PHP
17 lines
293 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\PhotoboothSettings\Schemas;
|
|
|
|
use Filament\Schemas\Schema;
|
|
|
|
class PhotoboothSettingInfolist
|
|
{
|
|
public static function configure(Schema $schema): Schema
|
|
{
|
|
return $schema
|
|
->components([
|
|
//
|
|
]);
|
|
}
|
|
}
|