arul
arul
FFilament
Created by arul on 11/10/2024 in #❓┊help
filament have ? free plugin like menu drag and drop like wordpress ??
filament have ? free plugin like menu drag and drop like wordpress ?? Link github please
3 replies
FFilament
Created by arul on 7/2/2024 in #❓┊help
403 forbidden when production
No description
14 replies
FFilament
Created by arul on 2/5/2024 in #❓┊help
how add defaultSort('') with relationship
May code in table ->DefaultSort('ruang.kode', 'desc') Not working, how add with relationship ??
3 replies
FFilament
Created by arul on 12/31/2023 in #❓┊help
where location head html in filament ?
i want add this code in <head> <!-- Other tags --> <meta name="dicoding:email" content="sy***@gmail.com"> <!-- Other tags --> </head> ?? Help
4 replies
FFilament
Created by arul on 12/2/2023 in #❓┊help
in server prod, sometimes when login had eror 404 ?
How to fix it?
3 replies
FFilament
Created by arul on 11/23/2023 in #❓┊help
how to show default value TextInput from public property
Public latitude; Textinput::make(lat)-default($this->latitude); How to show latitude value in filament form input ?
9 replies
FFilament
Created by arul on 11/4/2023 in #❓┊help
why my admin panel in production share hosting. tabel have anomali
No description
3 replies
FFilament
Created by arul on 10/31/2023 in #❓┊help
how re order widgets in dashboard
how to re order widgets in dashboard, ?? Help
3 replies
FFilament
Created by arul on 10/27/2023 in #❓┊help
how to poll 5s badge Navigation
public static function getNavigationBadge(): ?string {
return $countUnique = BrgMasuk::where('status', 0)->distinct('uuid')->count('uuid'); } I want to poll realtime 5 s ? how make poll in Badge
6 replies
FFilament
Created by arul on 10/15/2023 in #❓┊help
no message custome modal button, wire:confirm
<x-filament::button color="danger" wire:click="ditolak({{ $product->id }})" wire:confirm="Apa Anda yakin?">ditolak</x-filament::button> why no message confirmation custome modal page, when i use wire:confirm laravel ??
4 replies
FFilament
Created by arul on 10/4/2023 in #❓┊help
how simple way to, to delete file/image storage
delete image storage when click action button, Update or delete in table resource
6 replies
FFilament
Created by arul on 10/3/2023 in #❓┊help
how to make secondary login
I what make SSO client login. How add new login templet. Secondary login class. ?? Any idea.
2 replies
FFilament
Created by arul on 9/30/2023 in #❓┊help
how make upload file button in header table list resource.
I want to make xls import button to database. ??
9 replies
FFilament
Created by arul on 9/29/2023 in #❓┊help
when modal confirmation, i click confirm and code runs but modal still appears.
this my custome page code , How make modal do not appear after i click confirm. public function sendingAction(): Action { return Action::make('sending') ->label('Kirim') ->modalHeading('Kirim Barang Masuk Tidak Bisa di Edit') ->requiresConfirmation(); } my view custome page <x-filament-panels::form wire:submit="kirim"> <input type="hidden" wire:model="userId" > <div> {{ $this->sendingAction }} <x-filament-actions::modals /> </div> </x-filament-panels::form>
6 replies
FFilament
Created by arul on 9/29/2023 in #❓┊help
help, i make custome page i make button with ->requiresConfirmation(), and Confirmation not show
my action button in my pages protected function getSendActions(): array { return [ Action::make('send') ->label(__('kirim')) ->requiresConfirmation() ->modalHeading('Kirim Barang Masuk') ->modalDescription('Apa Anda yakin untuk Mengirimya Barang masuk karena tidak bisa di edit lagi') ->modalSubmitActionLabel('Yes, Kirim') ->submit('send'), ]; } anda code form in my view <x-filament-panels::form wire:submit="kirim"> <input type="hidden" wire:model="userId" > <x-filament-panels::form.actions :actions="$this->getSendActions()" /> </x-filament-panels::form>
5 replies
FFilament
Created by arul on 9/28/2023 in #❓┊help
select::make->required() no validation message when in custom page
Why select::make('jenis_barang')->require(), and datepiker:make(), in custome page. No validation massage. Only work TextInput. Only ??
4 replies
FFilament
Created by arul on 9/26/2023 in #❓┊help
how to Get $get value from another text input
I want get value for another textinput. My code TextInput::make('stok')->default(fn(Get $get) => $get('jenis_barang_id')) how to show $get('jenis_barang_id); In my textInput i want to query in default()
12 replies
FFilament
Created by arul on 9/24/2023 in #❓┊help
how get data from filter table ?
I want to get data from filter table. For may route to make report
3 replies