A simple CRUD (Create, Read, Update, Delete) application built using Laravel 11. This project demonstrates fundamental Laravel functionalities such as routing, request handling, validation, database operations, and pagination.
Create, Read, Update, and Delete posts. Server-side validation with custom error messages. Pagination for posts listing. Tailwind CSS for modern and responsive UI design.
git clone https://github.com/koriyapankaj/laravel-11-crud-example.git
cd laravel-11-crud-example
composer install
Copy the .env.example file and rename it to .env:
cp .env.example .env
Generate Application Key:
php artisan key:generate
Run Migrations and Seed Database:
php artisan migrate --seed
Start the Development Server: ``` php artisan serve