Skip to content

Instantly share code, notes, and snippets.

@taisang1996
Last active August 28, 2017 06:48
Show Gist options
  • Save taisang1996/e18c59939f5b855bbd4256d4e63ba863 to your computer and use it in GitHub Desktop.
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
<?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