Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/projectsandprograms/crud-laravel-10
A simple crud application with all the basic features you have to know.
https://github.com/projectsandprograms/crud-laravel-10
blade-template bootstrap-5 crud error-pages laravel laravel-10 laravel-bootstrap laravel-crud laravel-framework mysql mysql-database
Last synced: 24 days ago
JSON representation
A simple crud application with all the basic features you have to know.
- Host: GitHub
- URL: https://github.com/projectsandprograms/crud-laravel-10
- Owner: ProjectsAndPrograms
- Created: 2024-03-21T15:35:20.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-21T16:32:24.000Z (10 months ago)
- Last Synced: 2025-01-06T02:44:06.893Z (24 days ago)
- Topics: blade-template, bootstrap-5, crud, error-pages, laravel, laravel-10, laravel-bootstrap, laravel-crud, laravel-framework, mysql, mysql-database
- Language: PHP
- Homepage:
- Size: 22.3 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# crud-laravel-10
A simple crud application with all the basic features you have to know.## Features
1. Image Uplaod
2. Password encoder
3. Pagination links
4. Flash messages
5. Error pages to handle error code such as 404, 500 etc.## Technolgies Used
1. PHP (8.2)
2. Laravel-10
3. Blade templating engine
4. MySQL database
5. Bootstrap 5
6. Developed in Visual studio code
## Screenshots
### Users
## HOW TO USE?
Step-1: **[Install Composer](https://getcomposer.org/)**
Step-2: **[Install PHP and MySQL OR simply xampp](https://www.apachefriends.org/download.html)**
Step-3: create database schema for curd-application - to do that simply locate the directory using terminal and run the given command
```bash
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```bash
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/## Contributing
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.