├── src ├── light-bootstrap-stubs │ ├── resources │ │ ├── assets │ │ │ ├── favicon.ico │ │ │ ├── robots.txt │ │ │ ├── img │ │ │ │ ├── bg5.jpg │ │ │ │ ├── mask.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── new_logo.png │ │ │ │ ├── apple-icon.png │ │ │ │ ├── sidebar-1.jpg │ │ │ │ ├── sidebar-2.jpg │ │ │ │ ├── sidebar-3.jpg │ │ │ │ ├── sidebar-4.jpg │ │ │ │ ├── sidebar-5.jpg │ │ │ │ ├── tim_80x80.png │ │ │ │ ├── faces │ │ │ │ │ ├── face-0.jpg │ │ │ │ │ ├── face-1.jpg │ │ │ │ │ ├── face-2.jpg │ │ │ │ │ ├── face-3.jpg │ │ │ │ │ ├── face-4.jpg │ │ │ │ │ ├── face-5.jpg │ │ │ │ │ ├── face-6.jpg │ │ │ │ │ ├── face-7.jpg │ │ │ │ │ └── tim_vector.jpe │ │ │ │ ├── default-avatar.png │ │ │ │ ├── full-screen-image-2.jpg │ │ │ │ ├── full-screen-image-3.jpg │ │ │ │ ├── laravel.svg │ │ │ │ └── loading-bubbles.svg │ │ │ ├── fonts │ │ │ │ ├── nucleo-icons.eot │ │ │ │ ├── nucleo-icons.ttf │ │ │ │ ├── nucleo-icons.woff │ │ │ │ └── nucleo-icons.woff2 │ │ │ ├── js │ │ │ │ ├── light-bootstrap-dashboard.js │ │ │ │ └── core │ │ │ │ │ └── popper.min.js │ │ │ └── css │ │ │ │ └── demo.css │ │ └── views │ │ │ ├── layouts │ │ │ ├── navbars │ │ │ │ ├── navbar.blade.php │ │ │ │ ├── navs │ │ │ │ │ ├── guest.blade.php │ │ │ │ │ └── auth.blade.php │ │ │ │ └── sidebar.blade.php │ │ │ ├── footer │ │ │ │ └── nav.blade.php │ │ │ └── app.blade.php │ │ │ ├── alerts │ │ │ ├── feedback.blade.php │ │ │ ├── migrations_check.blade.php │ │ │ ├── success.blade.php │ │ │ ├── error_self_update.blade.php │ │ │ └── errors.blade.php │ │ │ ├── pages │ │ │ ├── maps.blade.php │ │ │ ├── sidebarstyle.blade.php │ │ │ ├── typography.blade.php │ │ │ ├── table.blade.php │ │ │ ├── upgrade.blade.php │ │ │ └── notifications.blade.php │ │ │ ├── welcome.blade.php │ │ │ ├── auth │ │ │ ├── verify.blade.php │ │ │ ├── passwords │ │ │ │ ├── email.blade.php │ │ │ │ └── reset.blade.php │ │ │ ├── login.blade.php │ │ │ └── register.blade.php │ │ │ ├── profile │ │ │ └── edit.blade.php │ │ │ └── dashboard.blade.php │ ├── database │ │ ├── .gitignore │ │ └── seeds │ │ │ ├── DatabaseSeeder.php │ │ │ └── UsersTableSeeder.php │ └── app │ │ ├── Http │ │ ├── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── TrimStrings.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── TrustProxies.php │ │ │ ├── Authenticate.php │ │ │ ├── VerifyCsrfToken.php │ │ │ └── RedirectIfAuthenticated.php │ │ ├── Controllers │ │ │ ├── PageController.php │ │ │ ├── UserController.php │ │ │ ├── HomeController.php │ │ │ └── ProfileController.php │ │ ├── Requests │ │ │ ├── ProfileRequest.php │ │ │ ├── UserRequest.php │ │ │ └── PasswordRequest.php │ │ └── Kernel.php │ │ └── Rules │ │ └── CurrentPasswordCheckRule.php ├── LightBootstrapPresetServiceProvider.php └── LightBootstrapPreset.php ├── screens ├── Login.png ├── Users.png ├── Profile.png ├── Tables.png ├── Dashboard.png └── Register.png ├── .vscode └── settings.json ├── changelog.md ├── composer.json ├── license.md ├── ISSUE_TEMPLATE.md └── documentation ├── tutorial-components.html └── template.html /src/light-bootstrap-stubs/resources/assets/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /screens/Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/screens/Login.png -------------------------------------------------------------------------------- /screens/Users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/screens/Users.png -------------------------------------------------------------------------------- /screens/Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/screens/Profile.png -------------------------------------------------------------------------------- /screens/Tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/screens/Tables.png -------------------------------------------------------------------------------- /screens/Dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/screens/Dashboard.png -------------------------------------------------------------------------------- /screens/Register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/screens/Register.png -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/bg5.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/mask.png -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/favicon.ico -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/new_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/new_logo.png -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/apple-icon.png -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/sidebar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/sidebar-1.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/sidebar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/sidebar-2.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/sidebar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/sidebar-3.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/sidebar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/sidebar-4.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/sidebar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/sidebar-5.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/tim_80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/tim_80x80.png -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/faces/face-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/faces/face-0.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/faces/face-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/faces/face-1.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/faces/face-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/faces/face-2.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/faces/face-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/faces/face-3.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/faces/face-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/faces/face-4.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/faces/face-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/faces/face-5.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/faces/face-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/faces/face-6.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/faces/face-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/faces/face-7.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/default-avatar.png -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/faces/tim_vector.jpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/faces/tim_vector.jpe -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "workbench.colorCustomizations": { 3 | "activityBar.background": "#0F313D", 4 | "titleBar.activeBackground": "#154556", 5 | "titleBar.activeForeground": "#F6FBFD" 6 | } 7 | } -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/full-screen-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/full-screen-image-2.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/assets/img/full-screen-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/light-bootstrap-dashboard-laravel/HEAD/src/light-bootstrap-stubs/resources/assets/img/full-screen-image-3.jpg -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/views/layouts/navbars/navbar.blade.php: -------------------------------------------------------------------------------- 1 | @if (auth()->check() && request()->route()->getName() != null) 2 | @include('layouts.navbars.navs.auth') 3 | @else 4 | @include('layouts.navbars.navs.guest') 5 | @endif -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/views/alerts/feedback.blade.php: -------------------------------------------------------------------------------- 1 | @if ($errors->has($field)) 2 | 3 | {{ $errors->first($field) }} 4 | 5 | @endif -------------------------------------------------------------------------------- /src/light-bootstrap-stubs/resources/views/alerts/migrations_check.blade.php: -------------------------------------------------------------------------------- 1 | @if (!\Schema::hasTable((new \App\Models\User)->getTable())) 2 |
Created using Montserrat Font Family
12 |40 | Paragraph 41 | I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that’s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at. 42 |
43 |47 |56 |48 | "I will be the leader of a company that ends up being worth billions of dollars, because I got the answers. I understand culture. I am the nucleus. I think that’s a responsibility that I have, to push possibilities, to show people, this is the level that things could be at." 49 |
55 |
50 |
51 | 52 | - Noaa 53 | 54 |
60 | I will be the leader of a company that ends up being worth billions of dollars, because I got the answers... 61 |
62 |66 | I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...
67 |71 | I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...
72 |76 | I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...
77 |81 | I will be the leader of a company that ends up being worth billions of dollars, because I got the answers... 82 |
83 |87 | I will be the leader of a company that ends up being worth billions of dollars, because I got the answers...
88 |{{ __('Here you can write a feature description for your dashboard, let the users know what is the value that you give them.') }}
20 |{{ __('Here you can write a feature description for your dashboard, let the users know what is the value that you give them.') }}
31 |{{ __('Here you can write a feature description for your dashboard, let the users know what is the value that you give them.') }}
42 |Here is a subtitle for this table
12 || ID | 17 |Name | 18 |Salary | 19 |Country | 20 |City | 21 | 22 | 23 |
|---|---|---|---|---|
| 1 | 25 |Dakota Rice | 26 |$36,738 | 27 |Niger | 28 |Oud-Turnhout | 29 |
| 2 | 32 |Minerva Hooper | 33 |$23,789 | 34 |Curaçao | 35 |Sinaai-Waas | 36 |
| 3 | 39 |Sage Rodriguez | 40 |$56,142 | 41 |Netherlands | 42 |Baileux | 43 |
| 4 | 46 |Philip Chaney | 47 |$38,735 | 48 |Korea, South | 49 |Overland Park | 50 |
| 5 | 53 |Doris Greene | 54 |$63,542 | 55 |Malawi | 56 |Feldkirchen in Kärnten | 57 |
| 6 | 60 |Mason Porter | 61 |$78,615 | 62 |Chile | 63 |Gloucester | 64 |
Here is a subtitle for this table
75 || ID | 80 |Name | 81 |Salary | 82 |Country | 83 |City | 84 | 85 | 86 |
|---|---|---|---|---|
| 1 | 88 |Dakota Rice | 89 |$36,738 | 90 |Niger | 91 |Oud-Turnhout | 92 |
| 2 | 95 |Minerva Hooper | 96 |$23,789 | 97 |Curaçao | 98 |Sinaai-Waas | 99 |
| 3 | 102 |Sage Rodriguez | 103 |$56,142 | 104 |Netherlands | 105 |Baileux | 106 |
| 4 | 109 |Philip Chaney | 110 |$38,735 | 111 |Korea, South | 112 |Overland Park | 113 |
| 5 | 116 |Doris Greene | 117 |$63,542 | 118 |Malawi | 119 |Feldkirchen in Kärnten | 120 |
| 6 | 123 |Mason Porter | 124 |$78,615 | 125 |Chile | 126 |Gloucester | 127 |
107 | {{ __(' "Lamborghini Mercy') }}
108 |
{{ __('Your chick she so thirsty') }}
109 |
{{ __('I am in that two seat Lambo') }}
110 |
{{ __('Are you looking for more components? Please check our Premium Version of Light Bootstrap Dashboard Laravel.')}}
14 || 20 | | {{ __('Free')}} | 21 |{{ __('PRO')}} | 22 | 23 | 24 |
|---|---|---|
Laravel |
26 | 27 | | 28 | |
| Login, Register, Forgot password pages | 31 |32 | | 33 | |
| User profile | 36 |37 | | 38 | |
| Users management | 41 |42 | | 43 | |
| User roles management | 46 |47 | | 48 | |
| Items management | 51 |52 | | 53 | |
| Categories management, Tags management | 56 |57 | | 58 | |
| Image upload, date picker inputs | 61 |62 | | 63 | |
| Radio button, checkbox, toggle inputs | 66 |67 | | 68 | |
Frontend |
71 | 72 | | 73 | |
| {{ __('Components')}} | 76 |{{ __('16')}} | 77 |{{ __('115+')}} | 78 |
| {{ __('Plugins')}} | 81 |{{ __('4')}} | 82 |{{ __('14+')}} | 83 |
| {{ __('Example Pages')}} | 86 |{{ __('7')}} | 87 |{{ __('22+')}} | 88 |
| {{ __('SASS Files')}} | 91 |92 | | 93 | |
| {{ __('Login/Register/Lock Pages')}} | 96 |97 | | 98 | |
| {{ __('Premium Support')}} | 101 |102 | | 103 | |
| 106 | | {{ __('Free')}} | 107 |{{ __('Just $149')}} | 108 |
| 111 | | 112 | {{ __('Current Version')}} 113 | | 114 |115 | {{ __('Upgrade to PRO') }} 116 | | 117 |
Handcrafted by our friend 10 | Robert McIntosh. Please checkout the 11 | full documentation. 12 |
13 |{{ __('Last Campaign Performance') }}
12 |{{ __('24 Hours performance') }}
32 |{{ __('All products including Taxes') }}
56 |{{ __('Backend development') }}
77 ||
84 |
85 |
89 |
90 | |
91 | {{ __('Sign contract for "What are conference organizers afraid of?"') }} | 92 |93 | 96 | 99 | | 100 |
|
103 |
104 |
108 |
109 | |
110 | {{ __('Lines From Great Russian Literature? Or E-mails From My Boss?') }} | 111 |112 | 115 | 118 | | 119 |
|
122 |
123 |
127 |
128 | |
129 | {{ __('Flooded: One year later, assessing what was lost and what was found when a ravaging rain swept through metro Detroit') }} 130 | | 131 |132 | 135 | 138 | | 139 |
|
142 |
143 |
147 |
148 | |
149 | {{ __('Create 4 Invisible User Experiences you Never Knew About') }} | 150 |151 | 154 | 157 | | 158 |
|
161 |
162 |
166 |
167 | |
168 | {{ __('Read "Following makes Medium better"') }} | 169 |170 | 173 | 176 | | 177 |
|
180 |
181 |
185 |
186 | |
187 | {{ __('Unfollow 5 enemies from twitter') }} | 188 |189 | 192 | 195 | | 196 |