KingNii
KingNii
FFilament
Created by KingNii on 6/14/2024 in #❓┊help
Make CheckBoxList selected when SELECT field is updated.
I have a select input and a checkboxlist input, I want to use the results of the selected data to fill and check the checkboxlist. HELP!!!
4 replies
FFilament
Created by KingNii on 5/25/2024 in #❓┊help
File Upload
No description
8 replies
FFilament
Created by KingNii on 4/26/2024 in #❓┊help
Filament Charts
No description
7 replies
FFilament
Created by KingNii on 4/13/2024 in #❓┊help
Filament Exporter
I tried exporting files and horizion show that the job was successful but for some reason the file was never downloaded. Can anyone help?
59 replies
FFilament
Created by KingNii on 4/8/2024 in #❓┊help
How to use getFilters in filament charts
Can anyone please direct me on how to implement getFilters to work?

$activeFilter = $this->filter;
protected function getFilters(): ?array
{
return [
'today' => 'Today',
'week' => 'Last week',
'month' => 'Last month',
'year' => 'This year',
];
}

$activeFilter = $this->filter;
protected function getFilters(): ?array
{
return [
'today' => 'Today',
'week' => 'Last week',
'month' => 'Last month',
'year' => 'This year',
];
}
1 replies
FFilament
Created by KingNii on 4/6/2024 in #❓┊help
Set default value for inputs
No description
15 replies
FFilament
Created by KingNii on 3/30/2024 in #❓┊help
FIlament Wizard Layout Submit
No description
3 replies
FFilament
Created by KingNii on 3/1/2024 in #❓┊help
Multiple forms page
No description
22 replies
FFilament
Created by KingNii on 2/23/2024 in #❓┊help
Can I define relationships in TextInputs??
Can I define relationships with TextInputs like I can in TextColumns? TextInput(‘company.name’)? TextColumn(‘company.name’)??
4 replies
FFilament
Created by KingNii on 2/22/2024 in #❓┊help
Getting an error trying to use the table builder
I get this error after adding implements HasTable to my class. I have already added InteractsWithTable and the table method. Know that I have already built multiple tables within the application and I’m now facing this bug. HELP!!! Class App\Livewire\V1\Admin\Delivery\DeliveryIndex contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Filament\Tables\Contracts\HasTable::makeFilamentTranslatableContentDriver)
5 replies
FFilament
Created by KingNii on 2/22/2024 in #❓┊help
Can I get come help with this error?
Class App\Livewire\V1\Admin\Delivery\DeliveryIndex contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Filament\Tables\Contracts\HasTable::makeFilamentTranslatableContentDriver)
3 replies
FFilament
Created by KingNii on 2/17/2024 in #❓┊help
Applying tailwindcss
Can anyone confirm if I can change css of form and table builder elements in filament? Do I have to keep using the colors etc that the elements are shipped?
3 replies
FFilament
Created by KingNii on 2/16/2024 in #❓┊help
Implement google api
Hi guys, I’m trying to implement google api place into my forms. The idea is that when users start typing their location, a drop down list from google will be display. Can anyone help???
5 replies
FFilament
Created by KingNii on 12/31/2023 in #❓┊help
Select field issue, HELP!!!
No description
44 replies
FFilament
Created by KingNii on 12/29/2023 in #❓┊help
How can I get data from the form in actions?
Action::make('edit') // ->requiresConfirmation() ->form([ TextInput::make('name'), TextInput::make('price'), TextInput::make('slug'), // TextInput::make('category'), Select::make('category') ->label('Category') ->options(Products::all()->pluck('name', 'id')) ->searchable(), TextInput::make('description'), FileUpload::make('image_url'), ]) ->fillForm(fn (Products $record): array => [ 'name' => $record->name, 'price' => $record->price, 'slug' => $record->slug, 'category' => $record->category->id, 'description' => $record->description, ]) ->action(function (Products $record): void { // dd($record); dd($this->form->getState()); $record->update($this->form->getState()); // $record->approve(); })
4 replies
FFilament
Created by KingNii on 6/5/2023 in #❓┊help
TextInput is overflowing on Chrome but looks good on Firefox
10 replies
FFilament
Created by KingNii on 5/29/2023 in #❓┊help
Multiple Image file Upload
3 replies
FFilament
Created by KingNii on 5/25/2023 in #❓┊help
ImageColumn not displaying in Table builder
I created a listing data with an image and I'm using the Table builder to create a table for my listing. The problem is that all other data columns are displaying except for the image. When I output the image without the Table builder by using Storage::URL($image), the image display but when I use the ImageColumn::make('image'), the image is displayed. This is how I saved the image FileUpload::make('image') ->image() ->preserveFilenames() ->directory('listing') ->hint('Main Image') ->columnSpan('full') ->required(),
11 replies