Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```