Skip to content

Instantly share code, notes, and snippets.

@hellowin
Created October 26, 2014 05:35
Show Gist options
  • Select an option

  • Save hellowin/f8f53ca2855d489fbc7e to your computer and use it in GitHub Desktop.

Select an option

Save hellowin/f8f53ca2855d489fbc7e to your computer and use it in GitHub Desktop.
Call Artisan fromm Laravel routes
//Example for force install DB
Route::get('/install', function()
{
echo '<br>init migrate';
Artisan::call('migrate');
echo 'done migrate';
echo '<br>init with tables seeder...';
Artisan::call('db:seed');
echo '<br>done with tables seeder';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment