@extends('admin.layouts.app') @section('content')

@isset($page_title) {{$page_title}} @endisset

{{--
--}}
@forelse ($sights as $key=>$sight) @empty @endforelse
# Name Image Is Active Action
{{($key+1) + ($sights->currentPage() - 1)*$sights->perPage()}} {{$sight->name}} {{$sight->name}} @if($sight->is_active == '1') Active @else Inactive @endif

Nothing Found

Showing {{($sights->currentpage()-1)*$sights->perpage()+1}} to {{(($sights->currentpage()-1)*$sights->perpage())+$sights->count()}} of {{$sights->total()}} Sights

{!! $sights->links() !!}
@endsection