@extends('admin.layouts.master') @section('title','Advertise') @section('stylesheet') @endsection @section('body')
@include('admin.message')

Advertise


@php $ads = App\Ads::all(); @endphp
@php $i=0; @endphp @foreach($ads as $ad) @php $i++ @endphp @endforeach
# Ad Type Ad Location Edit Action
{{ $i }} {{ $ad->ad_type }} {{ $ad->ad_location }}
{{ csrf_field() }} {{ method_field('DELETE')}}
@endsection @section('scripts') @endsection