Laravel 5

Laravel 5
Laravel Error Fix: Laravel 5 InvalidArgumentException in FileViewFinder.php line 137: View [.admin] not found
December 6, 2017
0
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.  
Laravel 5 Programming
Laravel Error Fix: Please provide a valid cache path
November 18, 2016
0
, ,
create these folders under storage/framework: sessions views cache
Laravel 5
Custom HTTP Error Pages in Laravel
November 17, 2016
0
Laravel makes it easy to return custom error pages for various HTTP status codes. For example, if you wish to customize the error page for 404 HTTP status codes, create a resources/views/errors/404.blade.php. This file will be served on all 404 errors generated by your application. Extend Laravel’s Exception Handler, Illuminate\Foundation\Exceptions\Handler, and override renderHttpException(Symfony\Component\HttpKernel\Exception\HttpException $e) method […]
Laravel 5 Programming
Simple Steps to Remove Public in URL (Laravel 5)
November 17, 2016
0
, ,
1. Rename the server.php in the your Laravel root folder to index.php and 2. Copy the .htaccess file from /public directory to your Laravel root folder. — Thats it !! 🙂