@extends('backend.layouts.master') @section('title') Tours @endsection @section('main-content') @include('backend.layouts.notification')
Tours
@if(count($tourTags)>0) @foreach($tourTags as $data) @endforeach
{{ __('sidebar.post_snumber') }} {{ __('sidebar.post_title') }} {{ __('sidebar.post_photo') }} {{ __('sidebar.post_status') }} {{ __('sidebar.post_action') }}
{{$data->id}} {{$data->title}} @if($data->photo) {{ Storage::url($data->photo) }} @else avatar.png @endif @if($data->status=='active') {{$data->status}} @else {{$data->status}} @endif
@else
No Tour Category found!!! Please add Tour Category
@endif
@endsection