Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
76 views

How can I use Filament export in production? I don't want to use S3 and I want to use local storage. The exported files are secure and should not be public. When I use local disk, production ...
Mohammad Pourbehzad's user avatar
0 votes
1 answer
106 views

I am using Laravel v12 with Filament v4 and TailwindCSS v4. I wanted to build a site with tabs, witch are a Livewire component inside filament/Page. In this Livewire components I have 3 tabs, where ...
Keso's user avatar
  • 101
0 votes
0 answers
32 views

I’m using Filament 4 with the package guava-labs/filament-calendar. Everything works except eventClick actions: clicking an event opens an empty modal, and no data from the clicked record is passed to ...
Nicolò Scapin's user avatar
0 votes
0 answers
44 views

I am using Filament 4.x with Livewire 3.x to build a tenant registration page. I have a custom loader that should display when the user clicks the register button. The registration button is rendered ...
Iwalewa Fawaz's user avatar
1 vote
1 answer
106 views

I'm using Filament PHP v3 with Laravel and have a table that can contain 500,000+ user records. When users click the "Select All" button the application crashes with a memory exhausted error:...
Nguyễn Trọng Hiếu's user avatar
0 votes
1 answer
67 views

In filament v3, after creating a new message, repeatable entry would automatically update but this is not the case in filament v4. How do I achieve the same behaviour in filament v4. In filament v4 I ...
Michael Njuguna's user avatar
0 votes
1 answer
129 views

I have an application that uses filament 3.2 and in this application I have a resource called "Students", within this resource I am calling a "Tables\Actions\ExportBulkAction" that ...
juan's user avatar
  • 13
0 votes
0 answers
34 views

In Spatie Media Library Plugin every thing works fine and I can upload images to s3 bucket but Files are not being loaded when on edit page, the image container remain loading and does not display the ...
GamaRay 's user avatar
0 votes
0 answers
29 views

I’m using Filament in my Laravel application. In one form, I’m using Tabs to organize different groups of fields. For example, my form schema looks like this: ->schema([ Tabs::make('Tabs') ...
Luiz Davi Mendes's user avatar
0 votes
1 answer
79 views

I am using FilamentPHP v3. I am new to FilamentPHP. I have a Repeater with columns Quantity', 'Cost Price, Unit Price, Tax and Total Price. Total Price is set after state of Quantity and Cost Price ...
Qasim Ali's user avatar
  • 607
2 votes
2 answers
95 views

I created an admin panel on Laravel with Filamentphp. I want to create a middleware for demo mode to block requests such as post, put, and delete. However, I couldn't do it. demomodemiddleware.php <...
Sercan Aslan's user avatar
1 vote
0 answers
43 views

I'm using Laravel Filament and have the following filter setup using Tables\Filters\SelectFilter::make() to allow users to filter records by multiple order statuses: Tables\Filters\SelectFilter::make('...
Rupesh Kayastha's user avatar
2 votes
1 answer
285 views

I'm working on a Laravel project using Filament for the admin dashboard. Initially, everything worked fine with a few resources. But after adding a fourth resource, the panel started throwing memory ...
NAZ's user avatar
  • 23
0 votes
0 answers
119 views

I'm trying to add the FilamentSaasTeamsPlugin in AdminPanelProvider ->plugins([ FilamentSaasTeamsPlugin::make() ->allowAccountTeamTableAction() ->...
gilbertdim's user avatar
0 votes
0 answers
44 views

I need to be able to handle creation process after submitting my Wizard Form to create Recipe. Wizard steps: Recipe Info Ingredients Guide I need to be able to save data in that particular order: ...
Dmytro Shved's user avatar
1 vote
3 answers
214 views

In a Filament form I have the following field: FileUpload::make('Files') ->acceptedFileTypes(self::$filetypes) ->disk('local') ->moveFiles() -&...
user26705630's user avatar
0 votes
2 answers
70 views

I have followed instructions here https://filamentphp.com/docs/3.x/forms/advanced#dependant-select-options to make a select form dependable from another field in the Edit form. Here is the code of the ...
Pablo's user avatar
  • 1
0 votes
1 answer
126 views

In FilamentPHP. I have generated a Resource "Organization" which has default List/View/Edit-pages, and three Relation-Managers. When I browse a record on the View-page, and switch tabs to ...
preyz's user avatar
  • 3,199
0 votes
0 answers
146 views

I've got this text input field with a little copy to clipboard button Forms\Components\TextInput::make('idp_xml') ->label('Generated URL') ->disabled() ->...
Nathan's user avatar
  • 3,101
0 votes
2 answers
102 views

How do I hide a custom blade (PanelsRenderHook) on my sidebar if sidebar is collapsed. class AppServiceProvider extends ServiceProvider { public function register(): void { } ...
KrutSednar's user avatar
0 votes
0 answers
112 views

I've created a custom page in FilamentPHP where I'm accepting a file upload and, after the user clicks an action, I want to load a table on the same page with data from the file. This data has no ...
alaric's user avatar
  • 987
0 votes
1 answer
91 views

I am using Laravel Filament with Nginx as the web server. I have tried many method to get this fixed, however the square bracket still exists. I tried php artisan route:clear php artisan optimize:...
maikucao's user avatar
  • 129
0 votes
1 answer
400 views

When running npm run build locally everything works fine. But running it with the same code on my server via nixpacks it fails via [vite:css] [postcss] Cannot find module './vendor/filament/support/...
subIT's user avatar
  • 31
0 votes
1 answer
58 views

I’m returning the form below in my CustomerResource. Is it possible to add multiple customers at the same time? For example, I could add three customers and then save them by clicking the create ...
Alphy Gacheru's user avatar
0 votes
2 answers
338 views

I am using https://filamentphp.com/plugins/bezhansalleh-shield for roles and permissions. I have 3 panels (admin, home and app) In the Roles table, it shows 114 permissions from all panels and ...
KrutSednar's user avatar
0 votes
2 answers
103 views

I am using Filament admin panel in Laravel. Filament v3.3.14, Laravel 12x I have found this great little function to alternate my icons depending on the value (0 or 1). Tables\Columns\...
GoodSirPunisher's user avatar
0 votes
0 answers
83 views

I have two related models Uom and UomCategory. In the Uom resource, I have an edit modal with a Select field to assign the UomCategory. In that Select I'm using a createOptionAction() and an ...
vmcr's user avatar
  • 3
0 votes
0 answers
51 views

Am working with laravel 11 with filamentphp 3 on postgres db, I have a schema for Authors, Profiles, Posts and post_has_author. author(author_id, profile_fk,...) profile(profile_id,...) post(post_id,.....
auwalup's user avatar
  • 93
0 votes
0 answers
47 views

Someone injected an online gambling web script into my Filament website. I saw they inserted scripts in root, public, storage, and vendor folders. I have found some scripts, but there are still ...
Hilmi's user avatar
  • 445
-2 votes
1 answer
73 views

I am using summaries to display the total amount to pay: TextColumn::make('price') ->summarize(Sum::make()) I would like to colorize the default "Sum" label and its output because ...
Billal BEGUERADJ's user avatar
1 vote
1 answer
83 views

In Laravel Filament, I am using summaries to display the total amount to pay: TextColumn::make('price') ->summarize(Sum::make()) I can rename the default "Sum" label: TextColumn::...
Billal BEGUERADJ's user avatar
1 vote
2 answers
169 views

im using filament for first time this is my server resource <?php namespace App\Filament\Resources; use Filament\Forms; use Filament\Tables; use App\Models\Server; use Filament\Forms\Form; use ...
Sameed Ediz's user avatar
0 votes
0 answers
160 views

I'm working on a Laravel 11.44 project using FilamentPHP 3.2 and the Filament Shield plugin 3.2 for role and permission management. I have two custom panels: An Admin panel (/admin) A Project Manager ...
Desholo's user avatar
1 vote
1 answer
239 views

I'm able to create a Filamentphp form on a livewire component to display it on a public page. However it's not using the filament styles. Here is my livewire component <?php namespace App\...
Alex T.'s user avatar
  • 89
1 vote
1 answer
309 views

I have a problem with modal in Filament PHP that installed for a Laravel project. In whole admin panel modals dialog is not showing but only modal transparent background shows up. To clarification ...
Farhad's user avatar
  • 13
0 votes
0 answers
50 views

I have eloquent model to store specific car brand model years: <?php namespace App\Models; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; class CarModel ...
Andreas Hunter's user avatar
0 votes
1 answer
207 views

I have these 2 fields. The ref_no with formatStateUsing() and ref_no without this method formatStateUsing(). Now the method formatStateUsing() affects both ref_no. How do I prevent this? TextInput::...
Nelson Castro's user avatar
0 votes
2 answers
126 views

I am using Filament for my application, and I have a form with a Select field. This Select field lists Contact records, each related to a User. We are allowing users to add new contacts using the ...
Francis Frane's user avatar
0 votes
1 answer
164 views

I have an event management system. Each event has speakers or sponsors. Here, I implement nested resources for Speakers. When I try to delete a speaker record via the speakers page, I get an error ...
Hilmi's user avatar
  • 445
0 votes
0 answers
135 views

The learner is still learning filamentphp I have a resource with dependent select fields and they are working as expected. The relationship saves correctly. However I am trying to get the form records ...
Frederick Osei's user avatar
0 votes
0 answers
155 views

I have a header action in a ListRecords type page where I show a simple modal with a FileUpload and a TextInput. The idea is the user will upload a file that will be saved with a random filename when ...
Fran Ferrández's user avatar
0 votes
2 answers
58 views

I have a model for Product and a related ProductAsset model for images, videos or documents related to the product. What I want to achieve is to let the user upload the main image as a product asset (...
vmcr's user avatar
  • 3
0 votes
0 answers
79 views

I created a custom registry, it is recording correctly. My problem is subscribing to event(new Registered($user)); and Filament::auth()->login($user); of the standard Filament Registry. My ...
Alisson Juns's user avatar
0 votes
2 answers
306 views

I've got the weirdest of problems. im using laravel 10.x and fimanent 3 and im having this issue where the filament routes work just fine but the routes ive created and have on web.php return 404. ...
kristi tanellari's user avatar
1 vote
1 answer
561 views

I am trying to save my private file on multiple servers (Reason: limited storage on each server) using an API (and FTP). I want to use the Filament FileUpload component in my form, but I don’t want ...
Afshar's user avatar
  • 121
0 votes
0 answers
121 views

Case/Scenario: I add DeleteAction on my SettingsResource table but I got error404 after I click the confirm in the confirmation modal. AlThough I had "id" in the model but I used "key&...
Anonymouse703's user avatar
1 vote
0 answers
137 views

I have a radio button; for each choice I make it shows me the input text associated with the choice made on the radio button. The code below works well; what I am looking for is to put the text input ...
ghost_of_the_code's user avatar
0 votes
0 answers
95 views

I'm trying to customize the way a record is created. So, in the CreatePage of my resource, I have: protected function handleRecordCreation(array $data): Model { // Here I want to access to ...
Greg's user avatar
  • 167
-2 votes
1 answer
67 views

im having this issue with my laravel-filamentphp code My login form is disabled... when i enter my credentials and press the login button i get the above errors in the console... Please help me to ...
Holger Parrales's user avatar
0 votes
0 answers
261 views

public static function table(Table $table): Table { return $table ->columns([ ImageColumn::make('sns_icon')->visibility('private'), TextColumn::make('...
B. asasa's user avatar

1
2 3 4 5 6