@extends('admin.layouts.master') @section('title', 'Advertise - Admin') @section('maincontent') @component('components.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Advertise') }} @endslot @slot('menu1') {{ __('Player Settings') }} @endslot @slot('menu2') {{ __('Advertise') }} @endslot @slot('button')
{{ __("Add Advertise")}} Delete Selected
@endslot @endcomponent @php $ads = App\Ads::all(); @endphp
{{ __('Advertise')}}
@php $i=0; @endphp @foreach($ads as $ad) @php $i++ @endphp @endforeach
# {{ __("Ad Type")}} {{ __("Ad Location")}} {{ __("Action")}}
{{ $i }} {{ $ad->ad_type }} {{ $ad->ad_location }}
@endsection @section('scripts') @endsection