@extends('admin.layout') @section('content')
{{ __('All Advertisements') }}
{{ __('Add') }}
@if (count($ads) == 0)

{{ __('NO ADVERTISEMENT FOUND') . '!' }}

@else
@foreach ($ads as $ad) @endforeach
{{ __('Ad Type') }} {{ __('Resolution') }} {{ __('Image') }} {{ __('Views') }} {{ __('Actions') }}
{{ ucfirst($ad->ad_type) }} @if ($ad->resolution_type == 1) {{ __('300 x 250') }} @elseif ($ad->resolution_type == 2) {{ __('300 x 600') }} @else {{ __('728 x 90') }} @endif @if ($ad->ad_type == 'banner') ad image @else - @endif {{ $ad->views }}
@csrf
@endif
{{-- create modal --}} @include('admin.advertisement.create') {{-- edit modal --}} @include('admin.advertisement.edit') @endsection