view.php 1020 Bytes
Newer Older
1 2
<?php

3
return [
4

Taylor Otwell committed
5 6 7 8 9 10 11 12 13 14
    /*
    |--------------------------------------------------------------------------
    | View Storage Paths
    |--------------------------------------------------------------------------
    |
    | Most templating systems load templates from disk. Here you may specify
    | an array of paths that should be checked for your views. Of course
    | the usual Laravel view path has already been registered for you.
    |
    */
15

Taylor Otwell committed
16
    'paths' => [
Graham Campbell committed
17
        realpath(base_path('resources/views')),
Taylor Otwell committed
18
    ],
19

Taylor Otwell committed
20 21 22 23 24 25 26 27 28 29
    /*
    |--------------------------------------------------------------------------
    | Compiled View Path
    |--------------------------------------------------------------------------
    |
    | This option determines where all the compiled Blade templates will be
    | stored for your application. Typically, this is within the storage
    | directory. However, as usual, you are free to change this value.
    |
    */
Taylor Otwell committed
30

31
    'compiled' => realpath(storage_path('framework/views')),
Taylor Otwell committed
32

33
];