hxnnxs
hxnnxs
FFilament
Created by hxnnxs on 3/16/2025 in #❓┊help
Modal window does not create a map.
I read a lot of documentation and reworked the code similar to the code from the documentation, but it still does not create. I attached the updated code, I also attached a new video with debugbar I really need your help ❤️
10 replies
FFilament
Created by hxnnxs on 3/16/2025 in #❓┊help
Modal window does not create a map.
According to the technical specifications, I need a table with existing maps.
10 replies
FFilament
Created by hxnnxs on 3/16/2025 in #❓┊help
Modal window does not create a map.
The thing is that when you click the send button, a record with the card number and user_id is not created in the cards table, although it should be
10 replies
FFilament
Created by hxnnxs on 3/16/2025 in #❓┊help
Modal window does not create a map.
In the video I showed that the table shows the user's current cards and they can be deleted, but they cannot be created
10 replies
FFilament
Created by hxnnxs on 2/10/2025 in #❓┊help
Black screen in production + canAccessPanel not working
Hello everyone! Thank you very much for your support❤️. I rolled back the livewire version to 3.4. Rebuilt the entire project on production. I wrote the command: php artisan livewire:publish --assets (also, according to the documentation, I wrote it in composer.json: php artisan livewire:publish --assets). Everything works fine now! The errors from the console, etc. have disappeared. But... there is only one problem with canAccessPanel. The thing is that an unauthorized user can go to the login page (both locally and in production) Can you please tell me what this is connected with?
13 replies
FFilament
Created by hxnnxs on 2/10/2025 in #❓┊help
Black screen in production + canAccessPanel not working
Hello, thank you for your reply. I clean the cache all the time, but it doesn't help. now I'll try to roll back the livewire version a bit. But I still don't really understand how it doesn't work in production, but everything is fine in the local environment.
13 replies
FFilament
Created by hxnnxs on 2/27/2024 in #❓┊help
In some places, the language does not switch
I looked through the debugbar no, I didn't see anything special
10 replies
FFilament
Created by hxnnxs on 2/8/2024 in #❓┊help
I encountered a strange bug when creating a purchase or sale in the app.
Tell me please
4 replies
FFilament
Created by Ajith Lal on 2/8/2024 in #❓┊help
How to write test for chart widgets or do we need to test chart widgets
Hi, add description for charts: https://filamentphp.com/docs/3.x/widgets/charts#adding-a-description , and here you can see some of the charts : https://filamentphp.com/docs/3.x/widgets/charts. P.S. I hope I understood you correctly 🙂
5 replies
FFilament
Created by hxnnxs on 2/6/2024 in #❓┊help
Add button in custom register page
<?php namespace App\Filament\Pages\Tenancy; use App\Models\Company; use Filament\Forms\Components\Select; use Filament\Forms\Components\TextInput; use Filament\Forms\Form; use Filament\Pages\Tenancy\RegisterTenant; use Illuminate\Database\Eloquent\Model; class RegisterCompany extends RegisterTenant { public static function getLabel(): string { return 'Create company'; } public function form(Form $form): Form { return $form ->schema([ TextInput::make('name') ->required() ->placeholder('FinTrack LTD.') ->minLength(2) ->maxLength(20) ->prefixIcon('heroicon-o-home') ->unique(), TextInput::make('short_name') ->required() ->prefixIcon('heroicon-o-home') ->placeholder('FT LTD.') ->minLength(2) ->maxLength(10) ->unique(), Select::make('type') ->required() ->options([ 'General' => 'General', 'Simplified' => 'Simplified', 'Patent' => 'Patent' ]) ]); } protected function handleRegistration(array $data): Company { $data['user_id'] = auth()->user()->id; $company = Company::create($data); $company->users()->attach(auth()->user()); return $company; } }
6 replies
FFilament
Created by hxnnxs on 2/5/2024 in #❓┊help
Filament\Forms\ComponentContainer::Filament\Forms\Concerns\{closure}(): Argument #1 ($component) mus
help me pls 😊
4 replies
FFilament
Created by hxnnxs on 2/1/2024 in #❓┊help
Error when transferring the project to prod: 403FORBIDDEN
Okay, thanks for taking the time to help me and achieve a bug fix, I appreciate it.
15 replies
FFilament
Created by hxnnxs on 2/1/2024 in #❓┊help
Error when transferring the project to prod: 403FORBIDDEN
Yes, you're right. I missed the moment. But now I have fixed everything, and I am faced with the error that after registration I still have a 403 error, but now I receive an email with verification. But when you click on the verification button, the user is not verified in the DB
15 replies
FFilament
Created by hxnnxs on 2/1/2024 in #❓┊help
Error when transferring the project to prod: 403FORBIDDEN
I inserted it into the provider ->email Verification(), but it doesn't work
15 replies