sumardi
sumardi
FFilament
Created by jals65 on 10/19/2023 in #❓┊help
Bulk action in a dropdown
5 replies
FFilament
Created by NeerGreeN on 9/16/2023 in #❓┊help
Table session
7 replies
FFilament
Created by NeerGreeN on 9/16/2023 in #❓┊help
Table session
Should be in your ListBooks page
7 replies
FFilament
Created by Augadh on 9/3/2023 in #❓┊help
Possibility to enable wire: navigate across the panel.
3 replies
FFilament
Created by neneone on 9/1/2023 in #❓┊help
Infolist not showing
6 replies
FFilament
Created by lazydog on 8/8/2023 in #❓┊help
Custom Menu
Search for "render hooks" in the docs
3 replies
FFilament
Created by FunnyHat on 8/6/2023 in #❓┊help
Add a link to the admin panel in user menu
8 replies
FFilament
Created by FunnyHat on 8/6/2023 in #❓┊help
Add a link to the admin panel in user menu
Argh, wait for this PR to be merge
8 replies
FFilament
Created by FunnyHat on 8/6/2023 in #❓┊help
Add a link to the admin panel in user menu
Try this
$panel
->userMenuItems([
MenuItem::make()
->label('Settings')
->visible(fn () => auth()->user()->is_admin)
->url(route('filament.admin.pages.settings'))
->icon('heroicon-o-cog-6-tooth'),
// ...
]);
$panel
->userMenuItems([
MenuItem::make()
->label('Settings')
->visible(fn () => auth()->user()->is_admin)
->url(route('filament.admin.pages.settings'))
->icon('heroicon-o-cog-6-tooth'),
// ...
]);
8 replies
FFilament
Created by blink on 8/6/2023 in #❓┊help
Record title in breadcrumb
3 replies
FFilament
Created by Rahaf on 8/6/2023 in #❓┊help
Class "Filament\Tables\Columns\Summarizers\Sum" not found
composer require filament/filament:"^3.0-stable" -W
26 replies
FFilament
Created by Rahaf on 8/6/2023 in #❓┊help
Class "Filament\Tables\Columns\Summarizers\Sum" not found
That's probably alpha. Use stable version.
26 replies
FFilament
Created by Rahaf on 8/6/2023 in #❓┊help
Class "Filament\Tables\Columns\Summarizers\Sum" not found
Upgrade to v3. Summary doesn't exists in v2.
26 replies
FFilament
Created by Rahaf on 8/6/2023 in #❓┊help
Class "Filament\Tables\Columns\Summarizers\Sum" not found
What filament version are you on?
26 replies
FFilament
Created by Rasasak on 8/4/2023 in #❓┊help
notification position in v3
use Filament\Notifications\Livewire\Notifications;
use Filament\Support\Enums\Alignment;
use Filament\Support\Enums\VerticalAlignment;

Notifications::alignment(Alignment::Center);
Notifications::verticalAlignment(VerticalAlignment::Start);
use Filament\Notifications\Livewire\Notifications;
use Filament\Support\Enums\Alignment;
use Filament\Support\Enums\VerticalAlignment;

Notifications::alignment(Alignment::Center);
Notifications::verticalAlignment(VerticalAlignment::Start);
8 replies
FFilament
Created by Darpan on 8/4/2023 in #❓┊help
User menu items, route not found
Try this ->url(fn () => route('filament.admin.pages.edit-profile'))
5 replies
FFilament
Created by Kleis on 8/1/2023 in #❓┊help
Beta 22 seems to break TableWidget
Use the table() method to configure the table widget.
public function table(Table $table): Table
{
return $table
->query(\App\Models\Order::where("status_id", 2)->orderBy('id', 'desc'))
->columns([
Tables\Columns\TextColumn::make('id')->label('#'),
Tables\Columns\TextColumn::make('full_name')->label(__('Name')),
])
->filters([
// ...
])
->actions([
// ...
])
->bulkActions([
// ...
]);
}
public function table(Table $table): Table
{
return $table
->query(\App\Models\Order::where("status_id", 2)->orderBy('id', 'desc'))
->columns([
Tables\Columns\TextColumn::make('id')->label('#'),
Tables\Columns\TextColumn::make('full_name')->label(__('Name')),
])
->filters([
// ...
])
->actions([
// ...
])
->bulkActions([
// ...
]);
}
4 replies
FFilament
Created by Trauma Zombie on 7/21/2023 in #❓┊help
Grouping by enum
Your enum class must implements Filament\Support\Contracts\HasLabel
9 replies
FFilament
Created by Falk Maria Zeitsprung on 7/2/2023 in #❓┊help
Relation Manager: Create with Modal. How to define default values for form fields?
CreateAction::make()
->mountUsing(function ($form) {
$form->fill([
//...
]);
});
CreateAction::make()
->mountUsing(function ($form) {
$form->fill([
//...
]);
});
3 replies
FFilament
Created by I. B. G. Pramana Adi Putra on 6/23/2023 in #❓┊help
Hide RelationManager card based on certain condition
3 replies