@extends('admin.layouts.master')
@section('pending','active')
@section('pendColor','dark')
@section('dashColor','light')
@section('listColor','light')
@section('content')
@if (Session::has('message'))
{{ Session::get('message') }}
@endif
|
S.no
|
Title |
City |
Country |
Host Name |
Status |
Action |
@forelse ($listnings as $listning)
|
{{ $loop->iteration }}
|
{{ $listning->title }} |
{{ $listning->city }}
|
{{ $listning->country }}
|
{{ $listning->user->first_name ?? '' }}
{{ $listning->user->last_name ?? '' }}
|
@if ($listning->is_active == true)
Listed
@else
Deactivated
@endif
|
|
@empty
| No Listining |
@endforelse
@endsection
@push('script')
@endpush