@extends("admin.admin_app") @section("content")

Documents List

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif @foreach($data as $i => $value) @endforeach
SNo. Hotel Name Document Validity Document Order
{{ $i+1 }} {{ $value->hotels->hotel_name }} {{ $value->doc_name }} {{ $value->doc_validity }} {{ $value->doc_order }}
@endsection