@extends("admin.admin_app") @section("content")

{{trans('words.listings')}}

{!! Form::open(array('url' => 'admin/listings','class'=>'','id'=>'search','role'=>'form','method'=>'get')) !!} {!! Form::close() !!}
{{trans('words.add_listing')}}
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
@foreach($listings as $i => $listing) @endforeach
{{trans('words.id')}} {{trans('words.user')}} {{trans('words.category')}} {{trans('words.title')}} {{trans('words.featured')}} {{trans('words.status')}} {{trans('words.actions')}}
{{$listing->id}} {{ \App\Models\User::getUserFullname($listing->user_id) }} {{$listing->category_name}} {{$listing->title}} @if($listing->featured_listing=='0') @else @endif @if($listing->status=='0') {{trans('words.pending')}} @else {{trans('words.published')}} @endif
@include('admin.pagination', ['paginator' => $listings])
@endsection