for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace GeneaLabs\LaravelModelCaching\Providers;
use Illuminate\Support\ServiceProvider;
class Service extends ServiceProvider
{
protected $defer = false;
public function boot()
$configPath = __DIR__ . '/../../config/laravel-model-caching.php';
$this->mergeConfigFrom($configPath, 'laravel-model-caching');
}