@extends('layouts.default') @section('title', 'Guest House List') @section('header-links') @include('includes.headers.guesthouses') @endsection @section('new_button') add Create Guest House @endsection @section('content')
@foreach($list as $li) @endforeach @if(count($list) == 0) @endif
Guest House Name Capacity No.of Students Location Created By Action
{{ ucwords($li->name) }} {{ $li->capacity }} {{ $li->consultant_count }} {{ Str::limit($li->city?->name.', '.$li->state?->name.', '.$li->country?->name, 15) }} {{ ucwords($li->creater?->name) }} create
No data
@stop