By Cristian Quiñones, Published on January 2nd 2025 | 11 mins, 2178 words
Introduction
In this tutorial, we will build a simple CRUD (Create, Read, Update, Delete) application using Laravel and Tailwind CSS. CRUD operations are the backbone of most web applications. We'll cover database migrations, creating a product management system, and styling the interface with Tailwind CSS.
Run the following command to generate the model and migration:
bash
php artisan make:model Product -mcr
Set up your migration: open your create_products_table.php file
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('products', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->text('description');
$table->string('image')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('products');
}
};
Now run your migration by following this command:
bash
php artisan migrate
Step 3. Setting up the ProductController
Create the index() function to display our data from database
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\Product;
use Illuminate\Support\Facades\Storage;
public function index()
{
$products = Product::paginate(5);
return view('products.index', compact('products'));
}
Create the store() function so we can add and be able to save the data in our database
public function store(Request $request)
{
$request->validate([
'title' => 'required|string',
'description' => 'required|string',
'image' => 'nullable|image|mimes:jpeg,png,jpg,gif,svg|max:2048', // validate the image
]);
$imagePath = null;
if ($request->hasFile('image')) {
$imagePath = $request->file('image')->store('images', 'public');
}
$product = Product::create([
'title' => $request->title,
'description' => $request->description,
'image' => $imagePath, // Save the image path to the database
]);
return redirect()->route('products.index');
}
Create the update() function so we can edit and be able to update the data in our database
public function update(Request $request, Product $product)
{
// Validate input
$request->validate([
'title' => 'required|string',
'description' => 'required|string',
'image' => 'nullable|image|mimes:jpeg,png,jpg,gif,svg|max:2048', // Validate image type and size
]);
// Check if a file is uploaded
if ($request->hasFile('image')) {
// Delete the old image if it exists
if ($product->image) {
Storage::delete('public/' . $product->image);
}
// Store the new image in the 'images' directory of the 'public' disk
$imagePath = $request->file('image')->store('images', 'public'); // This will store the file in storage/app/public/images
} else {
// Retain the old image if no new image is uploaded
$imagePath = $product->image;
}
// Update the product with the form data
$product->update([
'title' => $request->title,
'description' => $request->description,
'image' => $imagePath, // Save the image path in the database
]);
return redirect()->route('products.index');
}
Then create the destroy() function so we can delete the data in our database
public function destroy(Product $product)
{
$product->delete();
return redirect()->route('products.index');
}
Step 4. Add route to the web.php
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\ProductController;
Route::resource('products', ProductController::class);
Step 5. Design the front end
Create a layoute file : resources/views/layouts/app.blade.php layout