mirror of
https://github.com/v2board/v2board.git
synced 2024-11-11 01:59:12 +08:00
29 lines
469 B
PHP
Executable File
29 lines
469 B
PHP
Executable File
<?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');
|
|
}
|
|
}
|