@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 @elseif($ad->resolution_type == 3) 728 x 90 @elseif($ad->resolution_type == 4) 370 x 250 @else 370 x 600 @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 @section('script') @endsection