Joginder Sharma
Shield Plugin menu not appearing in the left sidebar menu
I installed fresh Laravel, Filament, and Shield. Below is the section from composer.json. I did not receive any errors, but the Filament Shield menu does not appear in the left sidebar menu.
"require": {
"php": "^8.2",
"bezhansalleh/filament-shield": "^3.3",
"filament/filament": "^3.3",
"laravel/framework": "^12.0",
"laravel/tinker": "^2.10.1"
},
3 replies
How to Clear Job Cache
I have done everything, but my job cache is not updated. I run
php artisan view:clear && php artisan config:cache && php artisan cache:clear && php artisan route:clear
, but the Job class code is still not updated. The __construct
function code is updated, but the handle()
function code is not. I commented out the entire handle() function code, yet the job is still running. I added Log, but nothing is printed. Can anyone tell me how to debug this or flush the Job class cache?6 replies