18 lines
322 B
PHP
18 lines
322 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Promotions\Schemas;
|
|
|
|
use Filament\Infolists\Components\TextEntry;
|
|
use Filament\Schemas\Schema;
|
|
|
|
class PromotionInfolist
|
|
{
|
|
public static function configure(Schema $schema): Schema
|
|
{
|
|
return $schema
|
|
->components([
|
|
//
|
|
]);
|
|
}
|
|
}
|