StephaneGadzhev
StephaneGadzhev
FFilament
Created by StephaneGadzhev on 8/14/2024 in #❓┊help
Executing TailwindCSS in InfolistBuilder / custom entry.
Hey guys I have installed the panel builder and I have the following infolist: public static function infolist(Infolist $infolist): Infolist { return $infolist->schema([ Section::make() ->schema([ Fieldset::make('General Information') ->columns(3) ->schema([ ViewEntry::make('media') ->view('filament.infolists.location.media-display'), TextEntry::make('name'), TextEntry::make('phone_number'), TextEntry::make('email'), TextEntry::make('address') ->columnSpan(['md' => 2]), TextEntry::make('website'), TextEntry::make('description') ->columnSpanFull(), ]), ]) ]); } the problem comes when I am implementing the ViewEntry. For some reason the blade is not executing the tailwind css. How can I resolve this issue?
6 replies