for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ElfSundae\Laravel\Support;
use Illuminate\Support\ServiceProvider;
class SupportServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
$this->loadViewsFrom(__DIR__.'/../resources/views', 'support');
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__.'/../resources/views' => resource_path('views/vendor/support'),
], 'laravel-support-views');
}
* Register the application service.
public function register()
$this->commands([
Console\IdeHelperGenerateCommand::class,
]);