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

@@ -27,8 +27,12 @@ return [
Illuminate\Bus\BusServiceProvider::class,
Illuminate\Redis\RedisServiceProvider::class,
App\Providers\AppServiceProvider::class,
App\Providers\ViewServiceProvider::class,
Eusebiu\JavaScript\JavaScriptServiceProvider::class
],
'aliases' => [
'Crypt' => Illuminate\Support\Facades\Crypt::class
'Crypt' => Illuminate\Support\Facades\Crypt::class,
'ScriptVariables' => Eusebiu\JavaScript\Facades\ScriptVariables::class,
'View' => Illuminate\Support\Facades\View::class
],
];

View File

@@ -1,5 +1,4 @@
<?php
return [
/*
|--------------------------------------------------------------------------
@@ -24,5 +23,5 @@ return [
| directory. However, as usual, you are free to change this value.
|
*/
'compiled' => realpath(storage_path('framework/views')),
];
'compiled' => realpath(PATH_TRUNK . 'bootstrap/cache/views')
];