Xboard/app/Providers/AppServiceProvider.php

29 lines
469 B
PHP
Raw Normal View History

2023-11-17 01:44:01 -05:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
$this->app['view']->addNamespace('theme', public_path() . '/theme');
}
}