This is a basic Laravel CRUD (Create, Read, Update, Delete) application that allows you to perform common database operations.
Follow these instructions to get a copy of the project up and running on your local machine for development and testing purposes.
Make sure you have the following installed on your machine:
- PHP (>= 7.3)
- Composer
- Node.js and npm (for frontend assets)
- MySQL or SQLite (you can configure the database connection in the
.env
file)
-
Clone the repository:
git clone https://github.com/yoNavigate to the project directory:
Command flow: bash
cd laravel-crud-app Install PHP dependencies:
composer install Install frontend dependencies:
npm install && npm run dev Copy the .env.example file to .env:
cp .env.example .env Generate application key:
php artisan key:generate Configure the database connection in the .env file.
Migrate the database:
php artisan migrate Run the development server:
php artisan serve The application should now be accessible at http://localhost:8000.
Usage Visit http://localhost:8000 in your browser to access the application. Perform CRUD operations on the items. Contributing Feel free to contribute to the project by forking and submitting a pull request.
License This project is licensed under the MIT License - see the LICENSE file for details.
sql Copy code
Feel free to adjust any details based on your specific project requirementsur-username/laravel-crud-app.git