i really can't play that
i really can't play that
FFilament
Created by Ric Le Poidevin on 11/6/2023 in #❓┊help
Multi-tenancy and createOptionForm on Select, Field 'company_id' doesn't have a default value
what about this? protected function mutateFormDataBeforeCreate(array $data): array { $data['company_id'] = auth()->user()->company_id; return $data; }
14 replies
FFilament
Created by sadiqgoni13 on 11/7/2023 in #❓┊help
Filling a form temporary
5 replies
FFilament
Created by Mike Wazowski on 10/26/2023 in #❓┊help
Filament Upgrade from V2 to V3
There is a typo. Try composer show filament/filament
63 replies
FFilament
Created by i really can't play that on 10/7/2023 in #❓┊help
Response time and size
Yeah, got it now. Thanks!
10 replies
FFilament
Created by i really can't play that on 10/7/2023 in #❓┊help
Response time and size
I needed to install erlandmuchasaj/laravel-gzip as I run it with artisan serve. Ok, so now I am compressing it, which is much better but ... I need to turn off displaying "all" records 😦
10 replies
FFilament
Created by i really can't play that on 10/7/2023 in #❓┊help
Response time and size
No description
10 replies
FFilament
Created by Rootes on 8/10/2023 in #❓┊help
Field Repeater, $get and $set
Hi, did you solve this? I need to update fields in one repeater with value from another repeater. Struggling 😦
4 replies
FFilament
Created by i really can't play that on 9/19/2023 in #❓┊help
Javascript address autocomplete
I used it in another application, so Iam used to it and also it is updated daily from czech official addresses. I somehow overlooked your package, so i will give it a try, because this is pain and I address autocomplete is crucial. Thanks (y)
6 replies
FFilament
Created by blessing9531 on 9/15/2023 in #❓┊help
Has anyone implemented Filamentv3 with tenancyfolaravel https://tenancyforlaravel.com/
Well, right now my multidatabase multinenancy is done by this method in Kernel.php public function bootstrap() { $host = request()->getHost(); $subdomain = explode('.', $host)[0]; $envFile = '.env.' . $subdomain; $envPath = base_path(); $envFilePath = $envPath . '/' . $envFile; if (!file_exists($envFilePath)) { abort(404, 'chyba'); } app()->loadEnvironmentFrom($envFile); parent::bootstrap(); } But I would like to try the package.
13 replies
FFilament
Created by blessing9531 on 9/15/2023 in #❓┊help
Has anyone implemented Filamentv3 with tenancyfolaravel https://tenancyforlaravel.com/
Thanks. Wating for it as well 👌🏻
13 replies
FFilament
Created by i really can't play that on 9/19/2023 in #❓┊help
Javascript address autocomplete
I tried to create a javascript listener which would update "value" attribute of corresponding field, but with no success: document.querySelector('.smartform-instance-personal.smartform-street-and-number').addEventListener('input', function() { var personalAddress = this.textContent; // nebo this.innerText document.querySelector('.smartform-instance-personal.smartform-street-and-number').value(personalAddress); });
6 replies
FFilament
Created by bahamagician on 8/16/2023 in #❓┊help
requiredIf() validation isn't working for File Upload component
Thx mate, This got on my nerves 🙂
4 replies