Joakim George
Joakim George
Hi, Great project btw! I have been using this package for the two projects I have been working, and it's going great so far. One hurdle I came across was...
**Describe the bug** Fresh install using laravel forge and php 8.0.11. Getting an error: ```bash Problem 1 - fzaninotto/faker[v1.9.1, ..., v1.9.2.x-dev] require php ^5.3.3 || ^7.0 -> your php version...
Type and Url are both undefined. I'm guessing due to updates in the spatie/media-library. - type is now 'mime_type' - and URL is retrieved using the "getUrl()" function call. ```javavscript...
For some reason the namespace below defaults to ``` App\Http\Controllers\Admin``` ```php Route::prefix('admin')->namespace('App\Http\Controllers\Admin')->name('admin/') ``` Which throws an error: Target class [App\Http\Controllers\App\Http\Controllers\Admin\Controller name not found. Fixes: ```php Route::prefix('admin')->namespace('\App\Http\Controllers\Admin')->name('admin/') ``` OR ```php Route::prefix('admin')->namespace('Admin')->name('admin/')...