Nobody
Nobody
FFilament
Created by Nobody on 10/21/2024 in #❓┊help
Why when I deploy Filament on the server the data dropdown is empty?
No description
16 replies
FFilament
Created by Nobody on 9/23/2024 in #❓┊help
I have created a new resource, in the partner panel but it does not appear in the display
No description
3 replies
FFilament
Created by Nobody on 9/9/2024 in #❓┊help
How to set the DateTimePicker in the minutes section
No description
9 replies
FFilament
Created by Nobody on 8/29/2024 in #❓┊help
Infolist has no [record()] or [state()] set.
I tried to display maps or google maps using filament-google-maps from cheesegrits. but ran into a problem that Infolist has no [record()] or [state()] set. Here is the code <?php namespace App\Filament\Pages; use App\Models\Location; use Cheesegrits\FilamentGoogleMaps\Fields\Map; use Cheesegrits\FilamentGoogleMaps\Infolists\MapEntry; use Filament\Infolists\Infolist; use Filament\Pages\Page; class TaskDashboard extends Page { protected static ?string $navigationIcon = 'heroicon-o-document-text'; protected static string $view = 'filament.pages.task-dashboard'; public ?array $data = []; public function getTitle(): string { return ''; } public function infolist(Infolist $infolist): Infolist { return $infolist ->schema([ MapEntry::make('map') ->columnSpanFull() ->height('500px') ->defaultZoom(10) ->defaultLocation([39.526610, -107.727261]) // default for new forms ]); } } this is task-dashboard.blade.php {{-- @vite('resources/css/filament/app/theme.css') --}} @vite('resources/css/app.css') <x-filament-panels::page> <div class="w-full h-[500px]"> {{ $this->infolist }} </div> </x-filament-panels::page>
3 replies
FFilament
Created by Nobody on 8/25/2024 in #❓┊help
Custom Layout in Filament V3
No description
5 replies