@extends('backend.layout') @section('content')
{{ __('Ads') }}
{{ __('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('backend.advertisement.create') {{-- edit modal --}} @include('backend.advertisement.edit') @endsection @section('script') @php $languages = App\Models\Language::get(); @endphp @endsection