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

3
return [
4 5 6 7 8 9 10 11 12 13 14 15

	/*
	|--------------------------------------------------------------------------
	| 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.
	|
	*/

16
	'paths' => [base_path().'/resources/views'],
17 18 19

	/*
	|--------------------------------------------------------------------------
Taylor Otwell committed
20 21 22 23 24 25 26 27 28 29 30
	| 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.
	|
	*/

	'compiled' => storage_path().'/framework/views',

31
];