for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MoriTiza\LaraLog;
use Illuminate\Support\ServiceProvider;
class LaraLogServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
//
}
* Bootstrap any application services.
public function boot()
$this->loadRoutesFrom(__DIR__ . '/routes/web.php');
$this->loadViewsFrom(__DIR__ . '/resources/views', 'laralog');