@extends('admin.layouts.app')
@section('title', 'Banners')
@section('breadcrumb')
Marketing
Banners
@endsection
@section('heading', 'Banners')
@section('subheading', 'Manage promotional banners across the platform.')
@section('content')
{{-- Add Form --}}
{{-- Table --}}
Banner
Link
Position
Impressions
Clicks
CTR
Active
Date
Actions
@foreach ([
['title' => 'Summer Sale - 20% Off', 'link' => '/offers/summer-sale', 'position' => 1, 'impressions' => 45230, 'clicks' => 2847, 'ctr' => '6.3%', 'active' => true, 'date' => '15 Feb 2025'],
['title' => 'New Launch - Bandra Heights', 'link' => '/projects/bandra-heights', 'position' => 2, 'impressions' => 38421, 'clicks' => 1923, 'ctr' => '5.0%', 'active' => true, 'date' => '14 Feb 2025'],
['title' => 'Premium Villas in Goa', 'link' => '/properties/goa-villas', 'position' => 3, 'impressions' => 29156, 'clicks' => 1456, 'ctr' => '5.0%', 'active' => false, 'date' => '12 Feb 2025'],
['title' => 'Commercial Spaces BKC', 'link' => '/commercial/bkc', 'position' => 4, 'impressions' => 22340, 'clicks' => 892, 'ctr' => '4.0%', 'active' => true, 'date' => '11 Feb 2025'],
['title' => 'Diwali Special Offers', 'link' => '/offers/diwali', 'position' => 5, 'impressions' => 56780, 'clicks' => 4532, 'ctr' => '8.0%', 'active' => true, 'date' => '10 Feb 2025'],
['title' => 'Rental Properties Bangalore', 'link' => '/rent/bangalore', 'position' => 6, 'impressions' => 18920, 'clicks' => 756, 'ctr' => '4.0%', 'active' => false, 'date' => '8 Feb 2025'],
] as $row)
Preview
{{ $row['title'] }}
{{ $row['link'] }}
{{ $row['position'] }}
{{ number_format($row['impressions']) }}
{{ number_format($row['clicks']) }}
{{ $row['ctr'] }}
{{ $row['date'] }}
Edit
Delete
@endforeach
Showing 1 to 6 of 12 results
Previous
1
Next
@endsection