WEBAPP NEW UI FIRST COMMIT

This commit is contained in:
Henry Jordan
2020-12-02 19:46:17 +00:00
parent f883f92c05
commit bb56be2730
34 changed files with 14527 additions and 33 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\View;
use Illuminate\Support\ServiceProvider;
class ViewServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
$this->loadMigrationsFrom(__DIR__ . '/../../migrations');
$this->loadViewsFrom(__DIR__ . '/../../resources/views', 'Views');
$prefix = "http://localhost/sysworkflowviena/en/neoclassic/cases/viena";
View::share('rootPath', $prefix);
}
}