@extends('admin.layout.master') @section('content')
@include('admin.layout.notification')

All user

ADD

@if(count($hotelList) > 0) @foreach($hotelList as $hotel) @endforeach @endif
ID Hotel Name Phone Address Link Status Action
{{ $hotel->id }} {{ $hotel->hotelname_en }} @if($hotel->phone == Null) No data @else {{ $hotel->phone }} @endif @if($hotel->address == Null) No data @else @endif Url @if($hotel->status == 1) Active @else Pending @endif Edit Delete
@stop()