├── .github └── workflows │ └── github-actions-deploy.yml ├── ISSUE_TEMPLATE.md ├── changelog.md ├── composer.json ├── docs └── documentation.html ├── license.md ├── readme.md ├── screens ├── Dashboard.png ├── Login.png ├── Notifications.png ├── Profile.png ├── Register.png └── Users.png └── src ├── PaperPreset.php ├── PaperPresetServiceProvider.php └── paper-dashboard-stubs ├── app ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ └── RegisterController.php │ │ ├── HomeController.php │ │ ├── PageController.php │ │ ├── ProfileController.php │ │ └── UserController.php │ └── Requests │ │ ├── PasswordRequest.php │ │ ├── ProfileRequest.php │ │ └── UserRequest.php └── Rules │ └── CurrentPasswordCheckRule.php ├── database └── seeds │ ├── DatabaseSeeder.php │ └── UsersTableSeeder.php └── resources ├── assets ├── css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── paper-dashboard.css │ ├── paper-dashboard.css.map │ └── paper-dashboard.min.css ├── demo │ ├── demo.css │ ├── demo.js │ └── jquery.sharrre.js ├── fonts │ ├── nucleo-icons.eot │ ├── nucleo-icons.ttf │ ├── nucleo-icons.woff │ └── nucleo-icons.woff2 ├── img │ ├── apple-icon.png │ ├── bg │ │ ├── fabio-mangione.jpg │ │ └── jan-sendereks.jpg │ ├── bg5.jpg │ ├── damir-bosnjak.jpg │ ├── default-avatar.png │ ├── faces │ │ ├── ayo-ogunseinde-1.jpg │ │ ├── ayo-ogunseinde-2.jpg │ │ ├── clem-onojeghuo-1.jpg │ │ ├── clem-onojeghuo-2.jpg │ │ ├── clem-onojeghuo-3.jpg │ │ ├── clem-onojeghuo-4.jpg │ │ ├── erik-lucatero-1.jpg │ │ ├── erik-lucatero-2.jpg │ │ ├── joe-gardner-1.jpg │ │ ├── joe-gardner-2.jpg │ │ ├── kaci-baum-1.jpg │ │ └── kaci-baum-2.jpg │ ├── favicon.png │ ├── header.jpg │ ├── jan-sendereks.jpg │ ├── laravel.svg │ ├── logo-small.png │ └── mike.jpg └── js │ ├── core │ ├── bootstrap.min.js │ ├── jquery.min.js │ └── popper.min.js │ ├── paper-dashboard.js │ ├── paper-dashboard.js.map │ ├── paper-dashboard.min.js │ └── plugins │ ├── bootstrap-notify.js │ ├── chartjs.min.js │ └── perfect-scrollbar.jquery.min.js └── views ├── auth ├── login.blade.php ├── passwords │ ├── email.blade.php │ └── reset.blade.php └── register.blade.php ├── layouts ├── app.blade.php ├── footer.blade.php ├── navbars │ ├── auth.blade.php │ ├── fixed-plugin-js.blade.php │ ├── fixed-plugin.blade.php │ └── navs │ │ ├── auth.blade.php │ │ └── guest.blade.php └── page_templates │ ├── auth.blade.php │ └── guest.blade.php ├── pages ├── dashboard.blade.php ├── icons.blade.php ├── map.blade.php ├── notifications.blade.php ├── tables.blade.php ├── typography.blade.php └── upgrade.blade.php ├── profile └── edit.blade.php ├── users └── index.blade.php └── welcome.blade.php /.github/workflows/github-actions-deploy.yml: -------------------------------------------------------------------------------- 1 | name: Update Fork 2 | on: 3 | push: 4 | branches: 5 | - master 6 | jobs: 7 | Explore-GitHub-Actions: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Stats 11 | run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event. " 12 | - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" 13 | - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." 14 | - name: Checkout preset 15 | uses: actions/checkout@v3 16 | with: 17 | repository: laravel-frontend-presets/paper-dashboard 18 | token: ${{ secrets.CT_TOKEN }} 19 | - run: | 20 | git config --global user.name "CI Bot" 21 | git config --global user.email "team@mupdivision.com" 22 | git remote add upstream https://${{ secrets.CT_TOKEN }}@github.com/creativetimofficial/paper-dashboard-laravel 23 | git fetch --all 24 | git pull origin master --tags -f 25 | git checkout upstream/master 26 | git pull upstream master 27 | git checkout origin/master 28 | git merge upstream/master 29 | git push origin HEAD:master --force 30 | git push --tags 31 | - name: Checkout Fork 32 | uses: actions/checkout@v3 33 | with: 34 | repository: creativetimofficial/paper-dashboard-laravel 35 | token: ${{ secrets.CT_TOKEN }} 36 | - run: | 37 | git config --global user.name "CI Bot" 38 | git config --global user.email "team@mupdivision.com" 39 | git remote add upstream https://${{ secrets.CT_TOKEN }}@github.com/laravel-frontend-presets/paper-dashboard 40 | git fetch --all 41 | git pull origin master --tags -f 42 | git checkout upstream/master 43 | git pull upstream master 44 | git checkout origin/master 45 | git merge upstream/master 46 | git push origin HEAD:master --force 47 | git push --tags 48 | - run: echo "The fork was updated" -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | 3 | Please answer the following questions for yourself before submitting an issue. 4 | 5 | - [ ] I am running the latest version 6 | - [ ] I checked the documentation and found no answer 7 | - [ ] I checked to make sure that this issue has not already been filed 8 | - [ ] I'm reporting the issue to the correct repository (for multi-repository projects) 9 | 10 | # Expected Behavior 11 | 12 | Please describe the behavior you are expecting 13 | 14 | # Current Behavior 15 | 16 | What is the current behavior? 17 | 18 | # Failure Information (for bugs) 19 | 20 | Please help provide information about the failure if this is a bug. If it is not a bug, please remove the rest of this template. 21 | 22 | ## Steps to Reproduce 23 | 24 | Please provide detailed steps for reproducing the issue. 25 | 26 | 1. step 1 27 | 2. step 2 28 | 3. you get it... 29 | 30 | ## Context 31 | 32 | Please provide any relevant information about your setup. This is important in case the issue is not reproducible except for under certain conditions. 33 | 34 | * Device: 35 | * Operating System: 36 | * Browser and Version: 37 | 38 | ## Failure Logs 39 | 40 | Please include any relevant log snippets or files here. 41 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to `Paper Dashboard` frontend preset for Laravel will be documented in this file. 4 | 5 | ## Version 1.0.0 6 | 7 | ### Added 8 | - Paper v1.0.0 frontend theme 9 | - Laravel Auth preset 10 | - Change user profile 11 | - User CRUD 12 | 13 | ## Version 1.0.1 - 2019-09-23 14 | 15 | - Update to Laravel 6.x 16 | 17 | ## Version 1.0.2 - 2019-11-14 18 | 19 | - Update Composer 20 | 21 | ## Version 1.0.3 - 2020-03-18 22 | 23 | - Update to Laravel 7.x 24 | 25 | ## Version 1.0.4 - 2020-09-21 26 | 27 | - Update to Laravel 8.x 28 | 29 | ## Version 1.0.5 - 2022-03-28 30 | 31 | - Update to Laravel 9.x 32 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "laravel-frontend-presets/paper", 3 | "description": "Laravel 10.x Front-end preset for paper dashboard", 4 | "license": "MIT", 5 | "homepage": "https://github.com/creativetimofficial/paper-dashboard-laravel", 6 | "keywords": ["Laravel", "Preset", "Paper"], 7 | "require": { 8 | "laravel/framework": "^10.0", 9 | "laravel/legacy-factories": "^1.0" 10 | }, 11 | "autoload": { 12 | "psr-4": { 13 | "LaravelFrontendPresets\\PaperPreset\\": "src/" 14 | } 15 | }, 16 | "extra": { 17 | "laravel": { 18 | "providers": [ 19 | "LaravelFrontendPresets\\PaperPreset\\PaperPresetServiceProvider" 20 | ] 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /docs/documentation.html: -------------------------------------------------------------------------------- 1 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 |18 | {{ __('We\'ve created the marketing campaign of the website. It was a very interesting collaboration.') }} 19 |
20 |29 | {{ __('We\'ve developed the website with HTML5 and CSS3. The client has access to the code using GitHub.') }} 30 |
31 |40 | {{ __('There is also a Fully Customizable CMS Admin Dashboard for this product.') }} 41 |
42 |Capacity
21 |150GB 22 |
23 |
Revenue
47 |$ 1,345 48 |
49 |
Errors
73 |23 74 |
75 |
Followers
99 |+45K 100 |
101 |
24 Hours performance
120 |Last Campaign Performance
139 |Line Chart with Points
162 |Handcrafted by our friend 14 | Robert McIntosh. Please checkout the 15 | full documentation. 16 |
17 |19 | Name 20 | | 21 |22 | Country 23 | | 24 |25 | City 26 | | 27 |28 | Salary 29 | | 30 | 31 | 32 |
---|---|---|---|
34 | Dakota Rice 35 | | 36 |37 | Niger 38 | | 39 |40 | Oud-Turnhout 41 | | 42 |43 | $36,738 44 | | 45 |
48 | Minerva Hooper 49 | | 50 |51 | Curaçao 52 | | 53 |54 | Sinaai-Waas 55 | | 56 |57 | $23,789 58 | | 59 |
62 | Sage Rodriguez 63 | | 64 |65 | Netherlands 66 | | 67 |68 | Baileux 69 | | 70 |71 | $56,142 72 | | 73 |
76 | Philip Chaney 77 | | 78 |79 | Korea, South 80 | | 81 |82 | Overland Park 83 | | 84 |85 | $38,735 86 | | 87 |
90 | Doris Greene 91 | | 92 |93 | Malawi 94 | | 95 |96 | Feldkirchen in Kärnten 97 | | 98 |99 | $63,542 100 | | 101 |
104 | Mason Porter 105 | | 106 |107 | Chile 108 | | 109 |110 | Gloucester 111 | | 112 |113 | $78,615 114 | | 115 |
118 | Jon Porter 119 | | 120 |121 | Portugal 122 | | 123 |124 | Gloucester 125 | | 126 |127 | $98,615 128 | | 129 |
Here is a subtitle for this table
141 |147 | Name 148 | | 149 |150 | Country 151 | | 152 |153 | City 154 | | 155 |156 | Salary 157 | | 158 | 159 | 160 |
---|---|---|---|
162 | Dakota Rice 163 | | 164 |165 | Niger 166 | | 167 |168 | Oud-Turnhout 169 | | 170 |171 | $36,738 172 | | 173 |
176 | Minerva Hooper 177 | | 178 |179 | Curaçao 180 | | 181 |182 | Sinaai-Waas 183 | | 184 |185 | $23,789 186 | | 187 |
190 | Sage Rodriguez 191 | | 192 |193 | Netherlands 194 | | 195 |196 | Baileux 197 | | 198 |199 | $56,142 200 | | 201 |
204 | Philip Chaney 205 | | 206 |207 | Korea, South 208 | | 209 |210 | Overland Park 211 | | 212 |213 | $38,735 214 | | 215 |
218 | Doris Greene 219 | | 220 |221 | Malawi 222 | | 223 |224 | Feldkirchen in Kärnten 225 | | 226 |227 | $63,542 228 | | 229 |
232 | Mason Porter 233 | | 234 |235 | Chile 236 | | 237 |238 | Gloucester 239 | | 240 |241 | $78,615 242 | | 243 |
246 | Jon Porter 247 | | 248 |249 | Portugal 250 | | 251 |252 | Gloucester 253 | | 254 |255 | $98,615 256 | | 257 |
Created using Montserrat Font Family
14 |42 | Paragraph 43 | I will be the leader of a company that ends up being worth billions of dollars, because I 44 | got the answers. I understand culture. I am the nucleus. I think that’s a responsibility 45 | that I have, to push possibilities, to show people, this is the level that things could be 46 | at. 47 |
48 |52 |64 |53 | "I will be the leader of a company that ends up being worth billions of dollars, because 54 | I got the answers. I understand culture. I am the nucleus. I think that’s a 55 | responsibility that I have, to push possibilities, to show people, this is the level 56 | that things could be at." 57 |
63 |
58 |
59 | 60 | - Noaa 61 | 62 |
68 | I will be the leader of a company that ends up being worth billions of dollars, because I 69 | got the answers... 70 |
71 |75 | I will be the leader of a company that ends up being worth billions of dollars, because I 76 | got the answers...
77 |81 | I will be the leader of a company that ends up being worth billions of dollars, because I 82 | got the answers...
83 |87 | I will be the leader of a company that ends up being worth billions of dollars, because I 88 | got the answers...
89 |93 | I will be the leader of a company that ends up being worth billions of dollars, because I 94 | got the answers... 95 |
96 |100 | I will be the leader of a company that ends up being worth billions of dollars, because I 101 | got the answers...
102 |Are you looking for more components? Please check our Premium Version 14 | of Paper Dashboard PRO.
15 |21 | | Free | 22 |PRO | 23 | 24 | 25 |
---|---|---|
27 | Laravel28 | |
29 | 30 | | 31 | |
Login, Register, Forgot password pages | 34 |35 | | 36 | |
User profile | 39 |40 | | 41 | |
Users management | 44 |45 | | 46 | |
User roles management | 49 |50 | | 51 | |
Items management | 54 |55 | | 56 | |
Categories management, Tags management | 59 |60 | | 61 | |
Image upload, date picker inputs | 64 |65 | | 66 | |
Radio button, checkbox, toggle inputs | 69 |70 | | 71 | |
74 | Frontend75 | |
76 | 77 | | 78 | |
Components | 81 |16 | 82 |160 | 83 |
Plugins | 86 |4 | 87 |13 | 88 |
Example Pages | 91 |7 | 92 |27 | 93 |
Login, Register, Pricing, Lock Pages | 96 |97 | | 98 | |
DataTables, VectorMap, SweetAlert, Wizard, jQueryValidation, FullCalendar etc... 101 | | 102 |103 | | 104 | |
Mini Sidebar | 107 |108 | | 109 | |
Premium Support | 112 |113 | | 114 | |
117 | | Free | 118 |Just $149 | 119 |
122 | | 123 | Current Version 124 | | 125 |126 | Upgrade to PRO 129 | | 130 |
36 | {{ __('I like the way you work it') }}
37 |
{{ __('No diggity') }}
38 |
{{ __('I wanna bag it up') }}
39 |
16 | {{ __('Log in and see how you can save more than 90 hours of work with CRUDs for managing: #users, #roles, #items, #categories, #tags and more.') }} 17 |
18 |