@extends('admin.layouts.app') @section('title', 'Blog Tags') @section('breadcrumb')
  • Blog
  • Tags
  • @endsection @section('heading', 'Blog Tags') @section('subheading', 'Manage tags for blog posts.') @section('content') {{-- Add Form (inline) --}}

    Add Tag

    @csrf
    {{-- Table --}}
    @foreach ([ ['id' => 1, 'name' => 'Mumbai', 'slug' => 'mumbai', 'count' => 56, 'created' => '15 Jan 2025'], ['id' => 2, 'name' => 'Investment', 'slug' => 'investment', 'count' => 42, 'created' => '12 Jan 2025'], ['id' => 3, 'name' => 'Tips', 'slug' => 'tips', 'count' => 38, 'created' => '10 Jan 2025'], ['id' => 4, 'name' => 'Luxury', 'slug' => 'luxury', 'count' => 29, 'created' => '08 Jan 2025'], ['id' => 5, 'name' => 'Budget', 'slug' => 'budget', 'count' => 24, 'created' => '05 Jan 2025'], ['id' => 6, 'name' => 'NRI', 'slug' => 'nri', 'count' => 18, 'created' => '03 Jan 2025'], ['id' => 7, 'name' => 'RERA', 'slug' => 'rera', 'count' => 15, 'created' => '01 Jan 2025'], ['id' => 8, 'name' => 'Home Loan', 'slug' => 'home-loan', 'count' => 22, 'created' => '28 Dec 2024'], ] as $tag) @endforeach
    ID Tag Slug Posts Count Created Actions
    {{ $tag['id'] }} {{ $tag['name'] }} {{ $tag['slug'] }} {{ $tag['count'] }} {{ $tag['created'] }}
    @endsection