Refactor navigation icon declarations in various resources for consistency; enhance Group model with new relationships and fillable properties; update Hotel and Pilgrim models with fillable attributes; improve table configurations across resources.

This commit is contained in:
2025-09-03 19:10:21 +05:00
parent f9f4c476ce
commit e2b47eb73f
39 changed files with 634 additions and 53 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Filament\Resources\Hotels\Schemas;
use Filament\Infolists;
use Filament\Schemas\Schema;
class HotelInfolist
{
public static function configure(Schema $schema): Schema
{
return $schema->components([
Infolists\Components\TextEntry::make('name'),
Infolists\Components\TextEntry::make('city'),
Infolists\Components\ImageEntry::make('image')
->columnSpanFull(),
Infolists\Components\ImageEntry::make('images')
->columnSpanFull(),
Infolists\Components\TextEntry::make('geo_location'),
Infolists\Components\TextEntry::make('haram_distance'),
Infolists\Components\TextEntry::make('star'),
]);
}
}