How to highlight the current menus in laravel
<nav> <a href="{{ route('admin.dashboard') }}" class="py-2.5 px-4 rounded transition duration-200 hover:bg-gray-700 hover:text-white flex items-center {{…
<nav> <a href="{{ route('admin.dashboard') }}" class="py-2.5 px-4 rounded transition duration-200 hover:bg-gray-700 hover:text-white flex items-center {{…
Create a project and connect it to the database. this is database table public function…
I’ll guide you through creating a counter component in Livewire step by step. This is…
Here’s a clean way to implement tags for posts so that clicking on a tag…
Scenario:You have a User model. Each user has exactly one Profile. The Profile contains extra…
Step 1: Make a Seeder Run this command: php artisan make:seeder UserSeeder Step 2: Edit…
Storing / Uploading the Image When you create a post, you’ll usually want to upload…
<small> Posted: {{ $post->created_at ? $post->created_at->diffForHumans() : 'Unknown time' }} </small> use this in blade…
First Step is to create a project and connect it to the database and run…
Create a project first and connect it to the database. And create a model and…