Laravel 5 InvalidArgumentException in FileViewFinder.php line 137: View [.admin] not found

后端 未结 7 1090
野趣味
野趣味 2021-02-19 07:32

This is student.php and my function for admin:

 public function admin(Request $request){

       if($request->isMethod(\'get\')){
       retu         


        
7条回答
  •  Happy的楠姐
    2021-02-19 07:53

    If you recently deployed you project to your production server or moved the project to another server, do not forget to clear the app cache by running these commands.

    php artisan cache:clear
    php artisan view:clear
    php artisan config:cache
    

    it should fix it.

    Also consider updating your .env file to match new environment variables.

提交回复
热议问题