Laravel: Calling Artisan Commands From Your Application
This little tip will show you how to run Artisan commands from within your applications code, if you need to. 1 <?php 2 3 Route :: get ( ' example ' , function ( ) 4 { 5 // Call and Artisan command from within your application. 6 Artisan :: call (...