<?php12return [3/*4|--------------------------------------------------------------------------5| View Storage Paths6|--------------------------------------------------------------------------7|8| Most templating systems load templates from disk. Here you may specify9| an array of paths that should be checked for your views. Of course10| the usual Laravel view path has already been registered for you.11|12*/1314'paths' => [15resource_path('views'),16],1718/*19|--------------------------------------------------------------------------20| Compiled View Path21|--------------------------------------------------------------------------22|23| This option determines where all the compiled Blade templates will be24| stored for your application. Typically, this is within the storage25| directory. However, as usual, you are free to change this value.26|27*/2829'compiled' => env(30'VIEW_COMPILED_PATH',31realpath(storage_path('framework/views'))32),33];343536