@extends('layouts.app') @section('content')
@if (Session::get('Delete'))
Permanent delete !
{{Session::get('Delete')}}
@endif @if (Session::get('Restore'))
Restore Successfull!
{{Session::get('Restore')}}
@endif @if(Session::get('RestoreAll'))
Success!
{{ Session::get('RestoreAll') }}
@endif @if(Session::get('emptyTrash'))
Success!
{{ Session::get('emptyTrash') }}
@endif

Hotel Trash List

Empty Trash Restore All
@foreach ( $HotelTrashed as $Hotel) @endforeach
Name Title Email Address Phone Reg NO Logo Photo Action
{{ $Hotel->Name }} {{ $Hotel->Title }} {{ $Hotel->Email }} {{ $Hotel->Address }} {{ $Hotel->Phone }} {{ $Hotel->RegNo }} {{ $Hotel->Logo }} {{ $Hotel->Photo }}
@endsection