PATH:
home
/
cardxfeb
/
public_html
/
vendor
/
rap2hpoutre
/
laravel-log-viewer
/
src
/
Rap2hpoutre
/
LaravelLogViewer
/
Editing: LaravelLogViewerServiceProvider.php
<?php namespace Rap2hpoutre\LaravelLogViewer; use Illuminate\Support\ServiceProvider; class LaravelLogViewerServiceProvider extends ServiceProvider { /** * Indicates if loading of the provider is deferred. * * @var bool */ protected $defer = false; /** * Bootstrap the application events. * * @return void */ public function boot() { if (method_exists($this, 'package')) { $this->package('rap2hpoutre/laravel-log-viewer', 'laravel-log-viewer', __DIR__ . '/../../'); } if (method_exists($this, 'loadViewsFrom')) { $this->loadViewsFrom(__DIR__.'/../../views', 'laravel-log-viewer'); } if (method_exists($this, 'publishes')) { $this->publishes([ __DIR__.'/../../views' => base_path('/resources/views/vendor/laravel-log-viewer'), ], 'views'); $this->publishes([ __DIR__.'/../../config/logviewer.php' => $this->config_path('logviewer.php'), ]); } } /** * Register the service provider. * * @return void */ public function register() { // } /** * Get the services provided by the provider. * * @return array */ public function provides() { return array(); } /** * Get the configuration path. * * @param string $path * @return string */ private function config_path($path = '') { return function_exists('config_path') ? config_path($path) : app()->basePath() . DIRECTORY_SEPARATOR . 'config' . ($path ? DIRECTORY_SEPARATOR . $path : $path); } }
SAVE
CANCEL