@extends('layouts.app') @section('head') @endsection @section('content')
@include('User::frontend.layouts.sidebar')

{{__("Manage Tours")}} @if(Auth::user()->hasPermissionTo('tour_create')) {{__("Add Tour")}} @endif

@include('admin.message') @if($rows->total() > 0)
{{ __("Showing :from - :to of :total Tours",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} {{$rows->appends(request()->query())->links()}}
@foreach($rows as $row)
@include('User::frontend.manageTour.loop-list')
@endforeach
{{ __("Showing :from - :to of :total Tours",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} {{$rows->appends(request()->query())->links()}}
@else {{__("No Tours")}} @endif
@endsection @section('footer') @endsection