@extends("admin.admin_app") @section("content")
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
@foreach($ad_list as $i => $ad_data) @endforeach
Ad Name {{trans('words.status')}} {{trans('words.action')}}
{{ stripslashes($ad_data->ads_name) }} @if($ad_data->status==1){{trans('words.active')}} @else{{trans('words.inactive')}}@endif
@include("admin.copyright")
@endsection