This is a simple CRUD project with basic UI. It is based on Yii 2 Basic Project Template. The main task of this project is keeping records of computers and applications.
It provides the following features:
- user authentication and authorization
- admin and user roles (admins can manage all records, users can only read them)
- CRUD operations on computers and applications (application-computer relation)
- export page data as html, csv, text, excel, pdf, json
- Install composer if you don't have one.
- Install the defined dependencies for this project. Run the install command
php composer.phar install
. - Create MySQL database. Change
'dbname'
,'username'
,'password'
in'config/db.php'
. - Run
php yii migrate
. - Run
php yii serve
. - It works.
- Login as admin (login: admin, password: admin) and try it.