Skip to content

Commit 5745d9e

Browse files
Update README.md
1 parent 95a381a commit 5745d9e

File tree

1 file changed

+36
-38
lines changed

1 file changed

+36
-38
lines changed

README.md

Lines changed: 36 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -417,55 +417,55 @@ Within the download you'll find the following directories and files:
417417

418418
```
419419
.
420-
├── bootstrap-tables.blade.php
421-
├── calendar.blade.php
420+
├── bootstrap-tables.blade.php # Bootstrap tables page
421+
├── calendar.blade.php # Calendar page
422422
├── components
423-
│ ├── button
423+
│ ├── button # Dropdown button component
424424
│ │ └── link.blade.php
425-
│ ├── date-picker.blade.php
426-
│ ├── input
425+
│ ├── date-picker.blade.php # Datepicker component
426+
│ ├── input # Select input component
427427
│ │ └── select.blade.php
428-
│ ├── table
428+
│ ├── table # Table template
429429
│ │ ├── cell.blade.php
430430
│ │ ├── heading.blade.php
431431
│ │ └── row.blade.php
432432
│ └── table.blade.php
433-
├── dashboard
433+
├── dashboard # All the dashboard pages
434434
│ ├── app-analysis.blade.php
435435
│ ├── dashboard.blade.php
436436
│ └── traffic-sources.blade.php
437437
├── datatables.blade.php
438438
├── errors
439-
│ ├── 404.blade.php
440-
│ └── 500.blade.php
439+
│ ├── 404.blade.php # Error 404 page
440+
│ └── 500.blade.php # Error 500 page
441441
├── layouts
442-
│ ├── app.blade.php
443-
│ ├── base.blade.php
444-
│ ├── footer2.blade.php
445-
│ ├── footer.blade.php
446-
│ ├── nav.blade.php
447-
│ ├── sidenav.blade.php
448-
│ └── topbar.blade.php
442+
│ ├── app.blade.php # Including layouts based on routes
443+
│ ├── base.blade.php # All the styles and scripts included
444+
│ ├── footer2.blade.php # Footer for pages without sidenav
445+
│ ├── footer.blade.php # Footer for pages with sidenav
446+
│ ├── nav.blade.php # Nav for mobile view
447+
│ ├── sidenav.blade.php # The sidebar menu
448+
│ └── topbar.blade.php # Search bar, notifications and user area
449449
├── livewire
450-
│ ├── auth
450+
│ ├── auth # Handles auth routes (login, register, logout, reset password)
451451
│ │ ├── forgot-password.blade.php
452452
│ │ ├── logout.blade.php
453453
│ │ ├── reset-password.blade.php
454454
│ │ ├── sign-in.blade.php
455455
│ │ └── sign-up.blade.php
456-
│ ├── categories.blade.php
456+
│ ├── categories.blade.php # Categories table
457457
│ ├── components
458-
│ │ ├── buttons.blade.php
459-
│ │ ├── forms.blade.php
460-
│ │ ├── modals.blade.php
461-
│ │ ├── notifications.blade.php
462-
│ │ └── typography.blade.php
458+
│ │ ├── buttons.blade.php # Buttons page
459+
│ │ ├── forms.blade.php # Forms page
460+
│ │ ├── modals.blade.php # Modals page
461+
│ │ ├── notifications.blade.php # Notifications page
462+
│ │ └── typography.blade.php # Typography page
463463
│ ├── edit-category.blade.php
464464
│ ├── edit-item.blade.php
465465
│ ├── edit-role.blade.php
466466
│ ├── edit-tag.blade.php
467467
│ ├── edit-user.blade.php
468-
│ ├── examples
468+
│ ├── examples # Examples pages
469469
│ │ ├── billing.blade.php
470470
│ │ ├── err404.blade.php
471471
│ │ ├── err500.blade.php
@@ -477,26 +477,24 @@ Within the download you'll find the following directories and files:
477477
│ │ ├── reset-password-example.blade.php
478478
│ │ ├── sign-in-example.blade.php
479479
│ │ └── sign-up-example.blade.php
480-
│ ├── items.blade.php
481-
│ ├── kanban.blade.php
482-
│ ├── messages.blade.php
480+
│ ├── items.blade.php # Items table
481+
│ ├── kanban.blade.php # Kanban page
482+
│ ├── messages.blade.php # Messages page
483483
│ ├── new-category.blade.php
484484
│ ├── new-item.blade.php
485485
│ ├── new-role.blade.php
486486
│ ├── new-tag.blade.php
487487
│ ├── new-user.blade.php
488-
│ ├── profile.blade.php
489-
│ ├── roles.blade.php
490-
│ ├── single-message.blade.php
491-
│ ├── tags.blade.php
492-
│ ├── users.blade.php
493-
│ └── widgets.blade.php
494-
├── map.blade.php
495-
├── tasks.blade.php
496-
├── transactions.blade.php
497-
└── welcome.blade.php
488+
│ ├── profile.blade.php # Profile page
489+
│ ├── roles.blade.php # Roles table
490+
│ ├── single-message.blade.php # Single message page
491+
│ ├── tags.blade.php # Tags table
492+
│ ├── users.blade.php # Users table
493+
│ └── widgets.blade.php # Widgets page
494+
├── map.blade.php # Map page
495+
├── tasks.blade.php # Tasks page
496+
├── transactions.blade.php # Transactions page
498497
```
499-
500498
## Browser Support
501499

502500
At present, we officially aim to support the last two versions of the following browsers:

0 commit comments

Comments
 (0)