SuperUserDo
SuperUserDo
FFilament
Created by SuperUserDo on 12/11/2024 in #❓┊help
Hide Profile Menu Item
No description
13 replies
FFilament
Created by SuperUserDo on 12/11/2024 in #❓┊help
Modal Dynamic Content
No description
4 replies
FFilament
Created by SuperUserDo on 11/26/2024 in #❓┊help
Database Notification Mark As Read
Hi fellas, i have this database notification Mark as read is working, but how do i hide that button after that notification is read? <?php namespace App\Notifications; use App\Models\User; use Filament\Notifications\Actions\Action; use Filament\Notifications\Notification as FilamentNotification; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; class DatabaseNotification extends Notification { use Queueable; public function __construct( protected string $view, protected string $title, protected array $data = [], ) {} public function via(object $notifiable): array { return ['database']; } public function toDatabase(User $notifiable): array { return FilamentNotification::make() ->title($this->title) ->body(view($this->view, ['data' => $this->data])) ->actions([ Action::make('Mark as read') ->button() ->markAsRead() , ]) ->getDatabaseMessage(); } }
2 replies
FFilament
Created by SuperUserDo on 11/24/2024 in #❓┊help
Table Reordering Wont Trigger Model boot() method to clear cache
Hi, I have an issue when i am reordering table rows, it reorders it but it wont hit that Model's boot() method to clear cache. In my boot method I have tried, updating, updated, saved... Any way around it?
2 replies
FFilament
Created by SuperUserDo on 11/20/2024 in #❓┊help
Remove Title On Pages
No description
4 replies
FFilament
Created by SuperUserDo on 11/18/2024 in #❓┊help
Table Caching
Hi guys, does filament support caching whole table? I have tried to cache whole response via middleware but it is not successful, $html does not load. But without filament when i cache whole response it works
2 replies
FFilament
Created by SuperUserDo on 11/15/2024 in #❓┊help
Custom Searchable Input/Select
No description
2 replies
FFilament
Created by SuperUserDo on 11/14/2024 in #❓┊help
Livewire/Filament Infolist Not Recognized
No description
2 replies
FFilament
Created by SuperUserDo on 11/14/2024 in #❓┊help
Implementation Of Tables within Expandable Row
Hi fellas, I Have a bit of challange to create expandable row with tabs within. And each tab should have own table (Preferablly livewire with implementation of Filament tables), is there any way to do it?
10 replies
FFilament
Created by SuperUserDo on 11/7/2024 in #❓┊help
Tiptap editor wont add <br> or indent text
No description
2 replies
FFilament
Created by SuperUserDo on 10/24/2024 in #❓┊help
TipTap Editor Issue
No description
4 replies
FFilament
Created by SuperUserDo on 10/21/2024 in #❓┊help
Reorder Table Clear Cache
No description
2 replies
FFilament
Created by SuperUserDo on 10/16/2024 in #❓┊help
TipTap Editor
No description
6 replies
FFilament
Created by SuperUserDo on 10/15/2024 in #❓┊help
Custom Column Clickable - Prevent
No description
6 replies
FFilament
Created by SuperUserDo on 10/15/2024 in #❓┊help
Spatie Image Mass Assignment Issue
No description
3 replies
FFilament
Created by SuperUserDo on 10/14/2024 in #❓┊help
Reset password email - translation footer text
No description
5 replies
FFilament
Created by SuperUserDo on 10/9/2024 in #❓┊help
Reordering of certain table columns
No description
1 replies
FFilament
Created by SuperUserDo on 10/3/2024 in #❓┊help
Tabs Validation Error
No description
2 replies
FFilament
Created by SuperUserDo on 9/27/2024 in #❓┊help
Is there a way to prevent field form being auto-populated
No description
3 replies
FFilament
Created by SuperUserDo on 9/25/2024 in #❓┊help
Reorder Table With Label Beside Button
No description
11 replies