1 | <?php |
||
2 | |||
3 | return [ |
||
4 | |||
5 | /* |
||
6 | |-------------------------------------------------------------------------- |
||
7 | | Bookwhen API Key |
||
8 | |-------------------------------------------------------------------------- |
||
9 | | |
||
10 | | Here you may specify your Bookwhen API Key. This will be |
||
11 | | used to authenticate with the Bookwhen API. |
||
12 | */ |
||
13 | |||
14 | 'api_key' => env('BOOKWHEN_API_KEY'), |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
15 | |||
16 | /* |
||
17 | |-------------------------------------------------------------------------- |
||
18 | | Bookwhen route prefix and middleware |
||
19 | |-------------------------------------------------------------------------- |
||
20 | | |
||
21 | | Here you may specify a reoute prefix and middleware for the default |
||
22 | | routes. |
||
23 | */ |
||
24 | |||
25 | 'prefix' => 'bookwhen', |
||
26 | 'middleware' => ['web'] |
||
27 | ]; |
||
28 |