@extends('layouts.app') @section('content')
Dashboard - Advertisements
@if (session('status')) @endif @if (session()->has('message'))
{!! session()->get('message') !!}
@endif

Add Advertisement


{{--below is the check to see if records exist--}} @if($ads->count() > 0) {{--the table below will house all the current added projects and teh available action options--}}
@foreach($ads as $ad) {{----}} @endforeach
ID Ad name Ad image Action
{{$ad->id}} {{$ad->ad_name}}{{$ad->ad_image}}{!! '' !!}
{{csrf_field()}} {{method_field('DELETE')}}
{{$ads->links()}}
@else

There are no existing ads in db

@endif
@endsection