https://github.com/gmanikandan-dev/yii2_student_crud_operation
In this project,we are added yii2 basic crud using gii.And also added dependent dropdown and export data using kartik plugins.
https://github.com/gmanikandan-dev/yii2_student_crud_operation
php yii2 yii2-framework
Last synced: 16 days ago
JSON representation
In this project,we are added yii2 basic crud using gii.And also added dependent dropdown and export data using kartik plugins.
- Host: GitHub
- URL: https://github.com/gmanikandan-dev/yii2_student_crud_operation
- Owner: gmanikandan-dev
- License: bsd-3-clause
- Created: 2022-01-04T16:04:27.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-15T07:07:11.000Z (about 2 years ago)
- Last Synced: 2025-02-16T18:18:12.821Z (3 months ago)
- Topics: php, yii2, yii2-framework
- Language: PHP
- Homepage:
- Size: 108 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Requirements
-------------------1. php 7.3+
2. Mysql 5.6
Setup development
-------------------1. From /var/www/html folder Run git clone https://github.com/g-manikandan845/yii2_student_crud_operation.git
2. Enter git username and password when prompted
3. Run cd yii_student
4. Run git checkout master
5. Run git pull origin master
6. Run php init
7. Run composer install
8. Run composer update
9. Create an empty database
10. Run zcat db/yii_student.sql.gz | mysql -u {database_username} -p {database_name}
11. Enter databse password when prompted.
12. Add DB Connection
file path : common/config/main-local.php
13. Backend Url : http://localhost/yii_student/backend/web/
Frontend Url : http://localhost/yii_student/frontend/web/3rd-Party Extensions in vendor folder
--------------------------------------1. https://github.com/kartik-v/yii2-export
2. https://github.com/kartik-v/yii2-widget-depdropDIRECTORY STRUCTURE
-------------------```
common
config/ contains shared configurations
mail/ contains view files for e-mails
models/ contains model classes used in both backend and frontend
tests/ contains tests for common classes
console
config/ contains console configurations
controllers/ contains console controllers (commands)
migrations/ contains database migrations
models/ contains console-specific model classes
runtime/ contains files generated during runtime
backend
assets/ contains application assets such as JavaScript and CSS
config/ contains backend configurations
controllers/ contains Web controller classes
models/ contains backend-specific model classes
runtime/ contains files generated during runtime
tests/ contains tests for backend application
views/ contains view files for the Web application
web/ contains the entry script and Web resources
frontend
assets/ contains application assets such as JavaScript and CSS
config/ contains frontend configurations
controllers/ contains Web controller classes
models/ contains frontend-specific model classes
runtime/ contains files generated during runtime
tests/ contains tests for frontend application
views/ contains view files for the Web application
web/ contains the entry script and Web resources
widgets/ contains frontend widgets
vendor/ contains dependent 3rd-party packages
environments/ contains environment-based overrides
```