generated from glhd/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 16
/
config.php
44 lines (38 loc) · 1.27 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
return [
/*
|--------------------------------------------------------------------------
| Default View
|--------------------------------------------------------------------------
|
| This is the view that Gretel will use by default when rendering
| breadcrumbs (overridden by <x-breadcrumb /> attributes.
|
*/
'view' => 'gretel::tailwind',
/*
|--------------------------------------------------------------------------
| Third Party Integrations
|--------------------------------------------------------------------------
|
| By default, Gretel will share the current breadcrumbs with Inertia.js
| if Inertia is installed. You can disable that here.
|
*/
'packages' => [
'inertiajs/inertia-laravel' => true,
],
/*
|--------------------------------------------------------------------------
| Use Static Closures
|--------------------------------------------------------------------------
|
| By default, Gretel will convert all closures that you pass to the
| Route::breadcrumb() macro to static closures. This results in slightly
| better performance when caching breadcrumbs. If, for some reason, you
| need to use the $this context inside of your closures, you will need to
| disable this setting (very uncommon).
|
*/
'static_closures' => true,
];