A simple crud application with all the basic features you have to know.
- Image Uplaod
- Password encoder
- Pagination links
- Flash messages
- Error pages to handle error code such as 404, 500 etc.
- PHP (8.2)
- Laravel-10
- Blade templating engine
- MySQL database
- Bootstrap 5
- Developed in Visual studio code
Step-1: Install Composer
Step-2: Install PHP and MySQL OR simply xampp
Step-3: create database schema for curd-application - to do that simply locate the directory using terminal and run the given command
php artisan migrate
this will create the database schema for you.
[Note- if you have custom username or password for the database ? you need to update the project configurations. you can edit them in .env file (this file is located in project folder and not visible - to update this you need to open the folder with any advance text editor like visual studio code)]
Step-4: after creating schema you are ready to serve this application - on the project folder open terminal and run following command
php artisan serve
After running this command application start running you can see the application by visiting this url - http://127.0.0.1:8000/
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.