Moudjames23
Moudjames23
FFilament
Created by Moudjames23 on 12/11/2023 in #❓┊help
Get current value of SelectConstraint
No I have this error
8 replies
FFilament
Created by Moudjames23 on 12/11/2023 in #❓┊help
Get current value of SelectConstraint
Typed property Filament\Forms\Components\Component::$container must not be accessed before initialization
8 replies
FFilament
Created by Moudjames23 on 12/11/2023 in #❓┊help
Get current value of SelectConstraint
Hello ?
8 replies
FFilament
Created by abedrabaia on 12/11/2023 in #❓┊help
Image upload error on production server
Hello, in your .env file you must change the value of APP_URL=http://127.0.0.1 to your correct domain name and make sure to execute this command:
php artisan storage:link
php artisan storage:link
113 replies
FFilament
Created by Moudjames23 on 5/30/2023 in #❓┊help
DatePickers validation in differents Wizard's steps
Thank you. @Dan Harrin, It's Work
4 replies
FFilament
Created by Moudjames23 on 4/13/2023 in #❓┊help
Custom EloquentBuilder based on current user
protected function getTableQuery(): Builder
{
$user = Auth::user();
if ($user->entreprise_id == null)
return Article::with(['rubrique']);

return Article::with(['rubrique'])
->where('entreprise_id', $user->entreprise_id);
}
protected function getTableQuery(): Builder
{
$user = Auth::user();
if ($user->entreprise_id == null)
return Article::with(['rubrique']);

return Article::with(['rubrique'])
->where('entreprise_id', $user->entreprise_id);
}
11 replies
FFilament
Created by Moudjames23 on 4/13/2023 in #❓┊help
Custom EloquentBuilder based on current user
Hey @Dennis Koch, thank you. It's works now
11 replies
FFilament
Created by Moudjames23 on 4/13/2023 in #❓┊help
Custom EloquentBuilder based on current user
Sorry for the delai
11 replies
FFilament
Created by Moudjames23 on 4/13/2023 in #❓┊help
Custom EloquentBuilder based on current user
Yess I add it in my Resource
11 replies
FFilament
Created by Moudjames23 on 4/13/2023 in #❓┊help
Custom EloquentBuilder based on current user
hey @Dennis Koch When I put a dd("test") in the getEloquentQuery() method and I refresh the page nothing happens but as soon as I click on a resource, the dd("test") is executed yet my ViewArticle page does not contains only the base code
11 replies
FFilament
Created by Moudjames23 on 4/13/2023 in #❓┊help
Custom EloquentBuilder based on current user
Hello @mcfaith, Thank you for your reply. What does $this->taskWork represent and this code is implemented in which method please?
11 replies