for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace IlyasKazi\Instamojo;
class InstamojoServiceProvider extends \Illuminate\Support\ServiceProvider
{
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
$this->loadRoutesFrom(__DIR__.'/routes/web.php');
$this->loadMigrationsFrom(__DIR__.'/migrations');
}
* Register services.
public function register()
// register our controller
$this->app->make('IlyasKazi\Instamojo\Controllers\InstamojoController');