15 lines
221 B
PHP
15 lines
221 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
return [
|
|
'paths' => [
|
|
base_path('site')
|
|
],
|
|
|
|
'compiled' => env(
|
|
'VIEW_COMPILED_PATH',
|
|
realpath(storage_path('framework/views'))
|
|
),
|
|
];
|