Tuto's Laravel Corner
Join the Tuto's Laravel Corner server to ask questions!
Join ServerTuto's Laravel Corner
Join the community to ask questions about Tuto's Laravel Corner and get answers from other members.
Join ServerCommunity questions
Channels
Multi-tenancy for a filament page
Show multiple table columns in a single table column of ressource
I believe we've done that with the pet clinic, but since I've started the project from video 1, I might have lost or not yet reached some of the merged data practice. Any hint or a link where to look as I...
Edit Create resource title text
Sorry if it sounds silly, but while working on my project, I've noticed that the text on every new resource adding is Create ...
My question is what is the proper way to rename the text?
For example I have a ressource named: Termination failure so it seems awkward if the ressource creation title is: Create Termination Failure. My idea is to change the text to: "Add a Termination Failure" which seem much more suitable and is part of my learning path how to rename the resource creatio...
I'm having following error :ENUM
Show record index in table row
I am sure I am missing something ridiculously simple but just to speed up the custom project development and ask the great kno...
Hello Tuto,
When I'm using tenancy stuff and trying to use them together EditProfile is not possible because have a route problem.
Thank you for your help, I think more people can have this same problem.
How to use custom Admin UI with Filament
II've been with Laravel for a year or so and I love it so far. So is with Livewire which surprised me with it's simplicity in many occasions in terms of dynamics and code easiness to digest. I've came across Filament in a few months so I am still learning my way through this incredible ecosystem but I feel comfortable now thanks to tuto and many other contributors to build a semi-complex project on my own.
The one thing that I would like to know and I've done some research on it al...
how to set a value of an input field using values in a repeater
foreach(price * quantity)
inside the total fieldWorking with Database Transactions.
Here is currently a rough schema of my tables :
```
items
id
name
stoc...
Working on a Laravel Filament project using remote Shared Hosting
As part of my "training punishment" I decided to try to install a fresh Laravel + Filament project on my shared cPanel hosting and edit the files locally with a remote sync. Why am I trying this - simple, I switch PCs often as part of my IT work related day so having a centralized project space would allow me to edit from wherever whenever.
So far, I've discovered a package provided from Micro$oft named RemoteSSH which allows you to connect to a shared host, lists all your files in...
is there a way to mutate data on createOptionForm in Select input.
` Forms\Components\Select::make('payment_method_id')
->label('Payment Method')
->relationship(name: 'paymentMethod', titleAttribute: 'name')
->required()
->createOptionForm([
Forms\Components\TextInput::make('name')->required(),
Forms\Components\Textarea::make('description')...
is there a way to make tabs filter optional according to roles
Render data from two resources
Need Help wrapping my mind around Filament implementation
I recently stumbled across this channel and love the content. Thank you for providing such great videos.
Hoping this group can help me get a better understanding of how Filament might help me with a hobby project I am working on. Fair warning, I am not that great with Laravel, still learning. I am just here to get understanding and learn more.
I want to create an application that let's different departments manage tasks, schedules, notes, etc.
Department heads (admins) would assign t...
how to share resources on both panels
Widgets $tableColumnSearches of type array error
Removing the widget solves the issue but Is there a way to resolve this? Thanks beforehand.
Custom setting page with filamentphp
Validation doesn't work on form created with createOptionForm
```php
// Document comes from a Leandro Ferreira package for document fields in pt_BR
Document::make('cpf')
->label('CPF')
->live()
->cpf('999.999.999-99')
->dehydrateStateUsing(fn(string $state): string => preg_replace('/[.-]+/', '', $state))
->un...
TinyMce in filamentphp as a customField
I also tried registering the TinyMCE script file as the Filament documentation suggests (https://filamentphp.com/docs/3.x/support/assets#registering-javascript-files). I can see the script file w...