Last active
August 28, 2017 06:48
-
-
Save taisang1996/e18c59939f5b855bbd4256d4e63ba863 to your computer and use it in GitHub Desktop.
Fix một số lỗi cơ bản khi triển khai dự án laravel lên host
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Fix một số lỗi cơ bản khi đưa lên hosting | |
// do hosting không chạy được lệnh | |
// example.com/fix | |
Route::get('/fix', function() { | |
Artisan::call('cache:clear'); | |
Artisan::call('config:clear'); | |
Artisan::call('route:clear'); | |
Artisan::call('view:clear'); | |
Artisan::call('optimize'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment