Update model path in AuthServiceProvider's policies.

Due to the change of default model location in Laravel 8.x from /App to /App/Models, the initial policy comment shoud also reflect this change.
This commit is contained in:
Wojciech Gabryś
2020-09-15 09:53:40 +02:00
committed by Dries Vints
parent c6c41f11b8
commit c62a7c13bf
+1 -1
View File
@@ -13,7 +13,7 @@ class AuthServiceProvider extends ServiceProvider
* @var array
*/
protected $policies = [
// 'App\Model' => 'App\Policies\ModelPolicy',
// 'App\Models\Model' => 'App\Policies\ModelPolicy',
];
/**