Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fitri-hy/php-mvc-dashboard-template
Template dashboard PHP (MVC) with Tailwind CSS.
https://github.com/fitri-hy/php-mvc-dashboard-template
dashboard mvc php templates
Last synced: 20 days ago
JSON representation
Template dashboard PHP (MVC) with Tailwind CSS.
- Host: GitHub
- URL: https://github.com/fitri-hy/php-mvc-dashboard-template
- Owner: fitri-hy
- License: mit
- Created: 2024-07-31T03:31:02.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-31T03:44:01.000Z (6 months ago)
- Last Synced: 2024-11-19T01:28:05.735Z (3 months ago)
- Topics: dashboard, mvc, php, templates
- Language: JavaScript
- Homepage:
- Size: 4.49 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP MVC Starter Template
Template dashboard PHP (MVC) with Tailwind CSS.
![]()
![]()
```
root/
├── app/
│ ├── controllers/
│ │ ├── AuthController.php
│ │ └── DashboardController.php
│ ├── models/
│ │ └── User.php
│ ├── views/
│ │ ├── components/
│ │ │ ├── footer.php
│ │ │ ├── header.php
│ │ │ └── menu.php
│ │ ├── partials/
│ │ ├── dashboard.php
│ │ ├── login.php
│ │ └── register.php
│ └── core/
│ ├── Router.php
│ ├── Controller.php
│ ├── Model.php
│ ├── Database.php
│ └── database.sql // import database mysql
├── public/
│ ├── assets/
│ └── index.php // Enter start of application
└── .htaccess
```