@extends('backend.screens.ads.layout') @section('ad-content')
Post New Ad
@php $columns = [ 'SNo.', 'Add ID', 'Brand Title', 'Date', 'Action' ]; @endphp @forelse($ads as $index => $ad) {{ $index + $ads->firstItem() }} {{ $ad->id }} {{ $ad->brand_title }} {{ $ad->created_at->format('M d, Y') }} @php /** @var $ad */ $menus = [ [ 'to' => route('admin.ads.show', $ad->id), 'fa-icon' => 'fa fa-eye', 'title' => 'Details', 'id' => 'view-'.$ad->id ], [ 'to' => route('admin.ads.edit', $ad->id), 'fa-icon' => 'fa fa-edit', 'title' => 'Edit', 'id' => 'edit-'.$ad->id ], [ 'to' => route('admin.ads.delete', $ad->id), 'fa-icon' => 'fa fa-trash', 'title' => 'Delete', 'class' => 'has-confirmation', 'data-message' => 'Are you sure you want to delete this ad?' ], ]; @endphp @empty Ad not found @endforelse @include('backend.shared.pagination', ['paginator' => $ads]) @endsection