@extends('admin.layouts.dashboard') @section('title', 'Content') @section('content') @php $categories = [ ['name' => 'Dining', 'count' => 120], ['name' => 'Shopping', 'count' => 85], ['name' => 'Travel', 'count' => 45], ['name' => 'Services', 'count' => 30], ]; @endphp

Content Management

Manage categories and platform content.

Categories

@foreach($categories as $cat)

{{ $cat['name'] }}

{{ $cat['count'] }} partners

@endforeach

Pages & Banners

Home Hero Banner

Last updated: 2 days ago

About Us Page

Last updated: 1 week ago

@endsection