gigiloouu
gigiloouu
FFilament
Created by gigiloouu on 11/5/2024 in #❓┊help
When i upload file and click to download its writting that file doest exist
No description
8 replies
FFilament
Created by gigiloouu on 10/30/2024 in #❓┊help
auto fill when i select
i want when i select debtorCompany take data from debtorCompany and fill automaticly in code and email textinput this is my code
Forms\Components\Select::make('debtor_company_id')
->relationship('debtorCompany', 'name')
->label('დებიტორის კომპანიის დასახელება')
->required(),
Forms\Components\TextInput::make('debtor_identification_code')
->label('დებიტორის საიდენტიფიკაციო კოდი')
->required(),
Forms\Components\TextInput::make('debtor_email')
->email()
->label('დებიტორი კომპანიის მეილი ')
->required(),
Forms\Components\Select::make('debtor_company_id')
->relationship('debtorCompany', 'name')
->label('დებიტორის კომპანიის დასახელება')
->required(),
Forms\Components\TextInput::make('debtor_identification_code')
->label('დებიტორის საიდენტიფიკაციო კოდი')
->required(),
Forms\Components\TextInput::make('debtor_email')
->email()
->label('დებიტორი კომპანიის მეილი ')
->required(),
12 replies
FFilament
Created by gigiloouu on 10/28/2024 in #❓┊help
automatically toggle switch
No description
20 replies
FFilament
Created by gigiloouu on 10/23/2024 in #❓┊help
add multiple select
No description
15 replies
FFilament
Created by gigiloouu on 10/18/2024 in #❓┊help
my filament resource when i enter value its not saving in db and have error
this is my error ` SQLSTATE[HY000]: General error: 1364 Field 'value' doesn't have a default value INSERT INTO translations (alias, updated_at, created_at) VALUES (fafafafa, 2024-10-18 09:11:24, 2024-10-18 09:11:24) f but im enter value this is my code ```
5 replies
FFilament
Created by gigiloouu on 10/3/2024 in #❓┊help
format data in filament table
in my sql i have column 'translation' which looks like this
{"en": "gamarjoba", "sl": "haha"}
{"en": "gamarjoba", "sl": "haha"}
. i want to have 2 row in filament table, english and sloven how ican take only en value from this and also only sl to use it.
5 replies
FFilament
Created by gigiloouu on 9/27/2024 in #❓┊help
connect 2 widget data
No description
9 replies
FFilament
Created by gigiloouu on 9/25/2024 in #❓┊help
can i add some data in chart hover?
No description
2 replies
FFilament
Created by gigiloouu on 9/25/2024 in #❓┊help
add date filter in widget
No description
7 replies
FFilament
Created by gigiloouu on 9/24/2024 in #❓┊help
save filter data in variable
in my code i want to save choosen filter in my variable like i have $status variable and i want to save there this

protected function getFilters(): ?array
{
return [
null => 'Show All',
0 => 'In Progress',
1 => 'Order',
2 => 'Completed',
3 => 'Cancelled',
];
}

protected function getFilters(): ?array
{
return [
null => 'Show All',
0 => 'In Progress',
1 => 'Order',
2 => 'Completed',
3 => 'Cancelled',
];
}
if i choose in Progress i want to save 0 in $status
24 replies
FFilament
Created by gigiloouu on 9/23/2024 in #❓┊help
widget chart size problem
No description
21 replies
FFilament
Created by gigiloouu on 9/18/2024 in #❓┊help
add widget inside the table view
No description
28 replies
FFilament
Created by gigiloouu on 9/12/2024 in #❓┊help
change navigation width
No description
8 replies
FFilament
Created by gigiloouu on 3/22/2024 in #❓┊help
migration error
i create new migration to add cascadeondelete() but when i try to run migrations i have this error SQLSTATE[42000]: Syntax error or access violation: 1091 Can't DROP 'purchases_company_id_foreign'; check that column/key exists (Connection: mysql, SQL: alter table purchases drop foreign key purchases_company_id_foreign)
35 replies
FFilament
Created by gigiloouu on 3/21/2024 in #❓┊help
Integrity constraint violation: 1451 Cannot delete or update a parent row: a foreign key constraint
No description
9 replies
FFilament
Created by gigiloouu on 3/21/2024 in #❓┊help
write name using id
in there i have company_id and i want using that write company_name how ican do it ?
TextColumn::make('purchase.company_id')
->searchable()
->sortable(),
TextColumn::make('purchase.company_id')
->searchable()
->sortable(),
10 replies
FFilament
Created by gigiloouu on 3/18/2024 in #❓┊help
add another table form in the another form
in another table i have
Tables\Actions\Action::make('editOtherModel')
->label('See'),
Tables\Actions\Action::make('editOtherModel')
->label('See'),
and i want when i click this action open new popup or window and show this table items table like normal table with add or edit
3 replies
FFilament
Created by gigiloouu on 3/14/2024 in #❓┊help
admin 403forbidden error
when i login i have 403 forbbiden erorr in /admin route why? in production
28 replies
FFilament
Created by gigiloouu on 3/13/2024 in #❓┊help
The POST method is not supported for route admin/login. Supported methods: GET, HEAD.
No description
154 replies
FFilament
Created by gigiloouu on 3/12/2024 in #❓┊help
The POST method is not supported for route admin/login. Supported methods: GET, HEAD.
No description
5 replies