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

Add Iwear


{{--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 Ad status Ad area Action
{{$ad->id}} {{$ad->ad_name}}{{$ad->ad_image}}{!! '' !!} @if($ad->ad_show == 1) Shown @else Hidden @endif @if($ad->ad_area == 1) Carousel @else Iwear Ad @endif
{{csrf_field()}} {{method_field('DELETE')}}
{{-- {{$ads->links()}}--}}
@else

There are no existing ads in db

@endif
@endsection