tissue/app/Providers/ViewComposerServiceProvider...

31 lines
568 B
PHP

<?php
namespace App\Providers;
use App\Http\ViewComposers\ProfileStatsComposer;
use Illuminate\Support\Facades\View;
use Illuminate\Support\ServiceProvider;
class ViewComposerServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
View::composer('components.profile-stats', ProfileStatsComposer::class);
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
//
}
}