Nuxnux
Is there any key value entry but for table ?
the question is in the title i want to show json value like key value of the infolist but when i use this
TextColumn::make('service.budget')
->label('Budget')
->toggleable()
->money()
->listWithLineBreaks()
->limitList(3)
->expandableLimitedList(),
it does only show the value not the key
3 replies
a weird problem with action
i have a simple action which change the state of a column
bookingInfoList() is used to refresh the infoList on the top after the change
but i got this error after using it the problem is there is no collection on this action btw i use this action on a view page
array_merge(): Argument #1 must be of type array, Illuminate\Database\Eloquent\Collection given
if you got any idea4 replies
Run into a problem setting up reverb for notification
Here the step i make
i change those in
filament.php
config it works perfectly on dev but on production i get this error
my .env is setup properly and from what is see the Echo instance is not properly construct
Here everything is set to null which result to this error
Did i miss any steps ?11 replies
Laravel Echo cannot be found on custom page in filament
Hey folks,
First of all echo is working outside filament properly for all type of channel and event are send properly but inside my filament custom page it give those error
which is because it doesnt inject the parameter to echo
Here you can see that every parameters are null.
all my .env are setup properly and the link with vite also (not my production env here)
Anyone have a idea :0 ?
15 replies
Notification not being send by reverb`
Hey so i have do it as follow
composer require filament/notifications:"^3.2" -W
php artisan filament:install --notifications
To send my notification i do it like this
i have already check the user is a good one
php artisan make:notifications-table
to create the table
i use the same code as the doc to create and send a notification
and then i also started the reverb like this
php artisan reverb:start --debub
but i still need to reload to see the notification do you know why did i do something bad ?4 replies
Integrate swiperjs in a custom column
Hey, the goal is to create a custom column like on this https://www.immoscout24.ch/fr/immobilier/louer/lieu-geneve
i have some problem with the integration of swiperjs https://swiperjs.com/swiper-api
from what i have understand and what i have done
npm install swiper
and in app.js
i add
but in my custom column impossible to create a new instance i always have Swiper not defined
1 replies