@extends('layouts.app') @section('content')
Ads List
Create New Ad @if ($ads->count() > 0) @foreach ($ads as $ad) @endforeach
Title Position Image Actions
{{ $ad->title }} {{ ucfirst($ad->position) }} @if ($ad->image) Ad Image @else No Image @endif Edit
@csrf @method('DELETE')
@else

No ads found.

@endif
@endsection