This commit is contained in:
Mekan1206
2026-05-19 20:54:04 +05:00
parent 9870048a5f
commit 7841e28596
58 changed files with 3092 additions and 30 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Filament\Resources\Coupons\Schemas;
use Filament\Infolists\Components\TextEntry;
use Filament\Schemas\Schema;
class CouponInfolist
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
TextEntry::make('phone')
->copyable(),
TextEntry::make('code')
->copyable(),
TextEntry::make('created_at')
->dateTime(),
TextEntry::make('updated_at')
->dateTime(),
]);
}
}