34 lines
585 B
PHP
34 lines
585 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Models\Softseting;
|
|
use Illuminate\Support\Facades\View;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class ViewServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
View::composer('*', function ($view) {
|
|
$settings = Softseting::first();
|
|
$view->with('locationSettings', $settings);
|
|
});
|
|
}
|
|
}
|