Assuming your long running function is server side, you are better off using a "pull" appr...
Something like Route::get('{region?}/product/{id}',array( 'as' => 'product','uses' => 'PublicC...
If Controller B does not interact with views, move it into a class of its own (not a controller clas...
This isn't really a laravel question, its a client side question. Short answer is that you are far b...
Or you could use a trait <?php namespace App\Common\Models; use DB; trait PositionUpdate {...
The Laravel portal for problem solving, knowledge sharing and community building.