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

I need to implement inline edit on my filamentphp 3 resource view page

I am working on Laravel 11 and Filament php3. Now I need to implement inline edit on my resource view page. In my view page I am using info list builder to show content. So in a short I need implement ...
theihasan's user avatar
-1 votes
0 answers
34 views

Pagination, per page and sorting doesn't work in filament table

I added Filament package to an existing project, and on this page with the filament table I see all the data, but when I click on pagination or sorting nothing happens. In console I see errors: My ...
Marsel.V's user avatar
  • 1,030
0 votes
0 answers
29 views

Chart.js Streaming Plugin in FilamentPHP: Error: "realtime" is not a registered scale

I'm trying to integrate the chartjs-plugin-streaming plugin with Chart.js in a Laravel project using FilamentPHP for real-time data visualization. My goal is to use the realtime scale provided by ...
Jose Ayram's user avatar
0 votes
1 answer
30 views

Filament FileUpload maxSize is ignored

i have livewire component where i have this filament form class Categories extends Component implements HasForms, HasTable { use InteractsWithForms; use InteractsWithTable; public $customFields; ...
Rana Abdul Rauf's user avatar
0 votes
0 answers
59 views

How to refresh form data in Filament?

I have a Game object which can be controlled via the GamesResource. Here I have following section with actions and status messages inside my form: Section::make('Game control') ->schema([ ...
markelar's user avatar
0 votes
2 answers
102 views

Filament: Hiding Form Input Dynamically

I am working with Filament and Laravel and currently I've got these two field inputs for choosing City BASED ON Province Field, inside form() method: Select::make("meta.employment_state") ...
Pouya's user avatar
  • 19
1 vote
0 answers
20 views

why widget didn't appear in panel?

I created chart widget for data_log for my project, at my first code i created this code for Volume PerMonth. In my database there's users, metergas, logs. In column metergas there are serialNo, ...
Rafi Ari Ghani's user avatar
0 votes
0 answers
52 views

Laravel Filament - Hide resource actions on reorder

I have a project that includes a custom Laravel Filament CMS. In this CMS i have a resource that contains some actions like view/edit/delete defined in my table(Table $table) method in the resource: $...
Luke_'s user avatar
  • 796
0 votes
0 answers
35 views

Filament Resource: Grand Total Not Updating on Product/Quantity Changes

I'm building an order management system using Filament in Laravel. However, I'm running into an issue where the grand total only updates when the discount field is changed, but it does not recalculate ...
Anas's user avatar
  • 17
1 vote
0 answers
49 views

Filament 3: TextInput numeric field truncating large numbers to first two digits?

I'm having an issue with Filament 3 where a numeric TextInput field is automatically truncating numbers. For example, when I enter "1000", it immediately becomes "10". Here's my ...
Marco's user avatar
  • 867
0 votes
0 answers
65 views

Filament filters not updating data with Sushi model

I have a filament app with a resource which is loading data from an API using Sushi This is the resource: class PersonResource extends Resource { protected static ?string $model = Person::class; ...
Oliver's user avatar
  • 236
0 votes
1 answer
113 views

Filament Table Text Column action not firing

I have a Filament table widget, in which I do a semi complex query to fetch some grouped data: public function table(Table $table): Table { return $table ->query( $this->...
oliverbj's user avatar
  • 6,031
0 votes
2 answers
170 views

Error 'Filament\Forms\Components\FieldSet not found' in Filamentphp v3.2

I'm facing a strange issue while deploying a Laravel project with Filament. Everything works perfectly on my local environment (Windows), but when I move the code to my production server (Ubuntu), I ...
Muhammed Adel's user avatar
0 votes
1 answer
42 views

Accessing sibling TextInput state in Repeater default method in Filament 3

I have a Filament Resource with the following form method: public static function form(Form $form): Form { return $form ->columns(1) ->schema([ ...
Daniel's user avatar
  • 21
0 votes
0 answers
34 views

Livewire poll stops updating during a function execution

I have a function that makes a few requests to external APIs and takes a little long to finish. I have a status variable in my livewire component and a poll component updating it in the view, and it ...
Leonardo Pessatti's user avatar
0 votes
0 answers
48 views

In filamentphp fileupload image is not visible while edit/update

Below code is used for fileupload. But while editing image is not appearing. We need to again upload same image ‘’’ Forms\Components\FileUpload::make(‘photo’)->disk(‘s3’)->directory(‘image’)->...
Muhammed Fayaz's user avatar
0 votes
0 answers
105 views

I have a problem with notifications appearing twice on filament 3

I'm using filament 3 with laravel 10, so the problem is when I use after() after adding data entry there are 2 notifications that appear, the first is the default notification then the notification ...
fajriyan's user avatar
0 votes
1 answer
353 views

Filament PHP v3 how to show multiple table data on single resource view page?

I am currently work student management project using FilamentPHP v3. Before I make this post I already research on filament documentation and youtube but still not found how to solve it. For now I ...
Muhammad Syafiq's user avatar
0 votes
0 answers
97 views

Use Laravel Filament tables inside Wizard

I am trying to use Filament (v3) Wizard to assist creating quotations. on first step, I tried to get all user input, then using afterValidation method, I validated and iserted these into the database (...
Ahmed's user avatar
  • 36
0 votes
1 answer
179 views

Show images in view and editing with Filament Laravel

I am using Filament for first time, for Larvavel and I cannot see the images in the view and in the edit... If I can see them in the table like in the following screenshots: Table View Mi code: <?...
ClaudioZ's user avatar
0 votes
0 answers
111 views

Filament Shield - Unable to disable/enable SelectColumn with respect to User's Permission

-How do I Unable to disable/enable SelectColumn in table, with respect to User's Permission via Filament Shield Plugin which uses Spatie/Roles-permission under the hood Here is my code which is not ...
Learner's user avatar
0 votes
1 answer
72 views

Why vite does not build app.css file at all?

Im using Laravel with FilamentPHP, admin panel is ready. Now i started to add the frontend part, how can i investigate why the .css file is missing in /public/build/assets? Tried npm run dev and npm ...
Horváth András's user avatar
0 votes
1 answer
80 views

Laravel Filament 3.x | how dependent select can save data in pivot table?

i have created many to many relationship of tbl_products with tbl_sub_categories table using pivot table. and sub_categories are depends on categories, it's fine i am able to get dependent data. but ...
shazim ali's user avatar
0 votes
1 answer
448 views

Disable Edit or Delete for specific record in Filament Laravel

In a model, I have 2 specific columns named 'is_editable' and 'is_deletable' (both are boolen). In filament table, while showing record, I want to disable Edit and/or Delete buttons if 'is_editable' ...
Learner's user avatar
0 votes
0 answers
29 views

How to make a loader for a component in livewire

I need to make loader when we are clicking from another component to refresh the data from api by a dispatch method $this->dispatch(“loader”);
Muhammed Fayaz's user avatar
0 votes
1 answer
93 views

Private Channels not working in Filament project

I have a filament (laravel) project. I'm using filament for whole application. Authentication, roles, permissions everything is handled through filament. In a filament custom page, I need to use ...
Harinder Singh's user avatar
0 votes
0 answers
48 views

Laravel 10 + Filament V3: Dynamically Rendering Imagick Image in Wizard Form - "Undefined variable $imageUrl" Error

I'm developing an application using Laravel 10 and Filament V3. In my application, I have a wizard form where I want to dynamically generate an image using Imagick based on the selected color and font....
Cristian Cirtu's user avatar
0 votes
0 answers
130 views

dynamically change label in filament: laravel, php

I want to change the label: Actual result: Displayed “Remove from creators” button (like during deleting several creators) Expected result: only “Trash can” button displayed count($records) === 1 ? ...
Anton Zimyanin's user avatar
1 vote
1 answer
284 views

How to make form full width in filament custom pages

I am trying to create a multistep business registration page but the form with is so small that steps cannot be visible without horizontal scrolling. I would like for my form to cover the entire page ...
John's user avatar
  • 383
0 votes
1 answer
205 views

How to retrieve parent id inside child repeater form in filamentphp?

I have three forms created using repeater, requests form which is nested under groups and groups nested under projects (projects -> groups -> requests) The requests table have fields project_id, ...
Selvakumar Eswaran's user avatar
0 votes
1 answer
98 views

How do I change the title of a Filament infolist?

I have a 'role' resource which has a view route, ie: RoleResource.php: class RoleResource extends Resource { protected static ?string $model = Role::class; public static function infolist(...
Adam Hopkinson's user avatar
0 votes
1 answer
57 views

How do I make the notification to be sent only to certain user based on assigned service order

I am trying to code a database notification using Filament in Laravel but it seems it won't send out notification to users who was assigned to service order. Is it possible to do this way ...
Mohammad Faiz Asyraf bin Azaha's user avatar
1 vote
0 answers
88 views

Auto Update Not Working On Filament Table Widget

I'm using a service that makes an API call to return data for me. I would like this data to be updated every 60 seconds. I'm aware that by default, widgets update every 10 seconds, however, my data ...
Nathan Bayne's user avatar
1 vote
1 answer
289 views

How to sort on HasOne relationship column in Laravel Filament table

I have three models. Lead, LeadStatus and LeadUpdates. The Lead model represents a lead that is generated for a certain product. The LeadStatus table contains all the possible statusses (i.e. 'Created'...
The Stompiest's user avatar
0 votes
2 answers
158 views

How to remove label on an action in Filament php

The title says it all. Trying to remove the label on an edit action. Or any action I've checked stackoverflow and github I can't seem to find a straightforward answer and I have a feeling that there ...
kristi tanellari's user avatar
0 votes
1 answer
151 views

File Upload component not showing image from Laravel local driver in Filament

I'm using FilamentPHP in my Laravel project. I'm using: FILESYSTEM_DISK and FILAMENT_FILESYSTEM_DISK local for store the file in storage. I've laravel seeder which creates some records in my DB and ...
Kishan's user avatar
  • 1
0 votes
0 answers
86 views

Laravel filament: Is it possible to get next record id while creating a record?

I want to save an image and I want to save it in below directory. sliders/<slider_id>/SFLKSJFDE234223512.jpg Here is my filament form code Forms\Components\FileUpload::make('image_path') ...
Md. Zayed Hassan's user avatar
0 votes
0 answers
80 views

How can broadcast a custom notification on specefic channel? (Filament, Laravel, Notification, Php)

I'm trying to make a notification that scopes Pusher channel to a specific tenant, because I have multitenants on my project (admin, tenant), and also I have multi-envs (local, staging for testing on ...
Jordi Andre Ramirez Vecino's user avatar
0 votes
0 answers
51 views

Laravel: Spatie Activity Log / Show causer in timeline FilamentPHP

I'm using the Activitylog Pro package (link) and running into an issue with displaying log details in my FilamentPHP OrderResource. Context I have two models: Order and Disapprove. In my ...
Jan's user avatar
  • 544
1 vote
1 answer
46 views

How can I restrict Filament select field options to the ones explicitly associated with the logged in user?

In my application, users can add their residential properties and create a listing based on that listing. Users can have many The Listing model relation public function property(): BelongsTo ...
blackbeaches's user avatar
0 votes
1 answer
210 views

How to add HTML block after/before my table in Filament Resource Page

As a beginner with no experience in Filament, how can I display additional text or information alongside my table after it's created? I'm looking to add contextual details or guidance for users ...
Akinbomi Oluwadamilare's user avatar
0 votes
0 answers
204 views

Alpine Expression Error: error is not defined

Project with TALL (Tailwind, Alpine, Laravel, Livewire) Stack and Filament I got in local/dev mode the follwing warning (in prod it does not happens, so it maybe has todo with some dev-packages?): ...
Mickey Pearson's user avatar
0 votes
1 answer
418 views

How to change Laravel Filament Eloquent Query base on a condition?

I have a filament resource with a table. I want to change the table query based on the condition i.e. if there is a filter ->modifyQueryUsing(function (Builder $query){ if (tableFilter) ...
Frederick Osei's user avatar
1 vote
0 answers
218 views

Cannot access Filament admin panel pages except dashboard in the production website

"laravel/framework": "^10.10", "filament/filament": "3.2", "php": "^8.1", I am facing one error in this laravel jetstream ...
Ali Ahmad's user avatar
0 votes
2 answers
278 views

Table actions not firing

I have a table function in a custom Filament page: I have initialized the page like this: <?php namespace App\Filament\App\Resources\OIPRequestResource\Pages; use App\Filament\App\Resources\...
oliverbj's user avatar
  • 6,031
0 votes
0 answers
30 views

Video Loading Issue on Chapter Switch in FilamentPHP Custom Page

I'm working on a learning management system using Laravel, FilamentPHP, AlpineJs and Livewire, and facing an issue with loading videos in my Filament custom page. The video for the current chapter ...
Ian Clemence's user avatar
-1 votes
1 answer
57 views

filament fileupload insert to media table issue

im stuck at uploading file using filament, hope someone can help on how to save it to media table below is my filament form, view part is working public function form(Form $form): Form { return $...
Richard's user avatar
0 votes
0 answers
26 views

Select Component Lazy Loading though API

I use external API as the source of options for my select component. Is there anyway to make it support the pagination of the api? which means load more data once the user scrolled to the end of shown ...
Mohammed F. Ouda's user avatar
0 votes
1 answer
116 views

Issue with Filamentphp/ Minio unable to save file to bucket with FileUpload component

I have an issue with FileUpload Component with this issue : Unable to retrieve the mime_type for file at location: livewire-tmp/3gV8mEXfLVdtzdvzKRuiGxHRe2Kjoj-metaSWNvbmUtQkxDLnBuZw%3D%3D-.png. [...
Ju Box's user avatar
  • 1
0 votes
2 answers
318 views

How to render a confirmation modal before submitting wizard form? [FilamentPHP]

I'm currently building out a wizard form with multiple steps. I want to present the user with confirmation modal before confirming the last step, and creating data in database. I managed to get the ...
zlatan's user avatar
  • 3,895

1
2 3 4 5 6