forked from jeremykenedy/laravel-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaravelPhpInfo.php
executable file
·34 lines (24 loc) · 1008 Bytes
/
laravelPhpInfo.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
<?php
return [
/*
|--------------------------------------------------------------------------
| Laravel PHP Info settings
|--------------------------------------------------------------------------
*/
// The parent blade file
'laravelPhpInfoBladeExtended' => 'layouts.app',
// Enable `auth` middleware
'authEnabled' => true,
// Enable Optional Roles Middleware
'rolesEnabled' => true,
// Optional Roles Middleware
'rolesMiddlware' => ['activated', 'role:admin', 'activity', 'twostep'],
// Switch Between bootstrap 3 `panel` and bootstrap 4 `card` classes
'bootstapVersion' => '4',
// Additional Card classes for styling -
// See: https://getbootstrap.com/docs/4.0/components/card/#background-and-color
// Example classes: 'text-white bg-primary mb-3'
'bootstrapCardClasses' => '',
// Inline CSS
'usePHPinfoCSS' => true,
];