@extends('layouts.app') @section('title', __('home.home')) @section('content')
@foreach($hostels as $row)

{{$row->name }}

{{$row->room_capacity }} rooms

{{$row->bed_count }} beds {{$row->vecant_count }} vacant

@if($row->vecant_count == 0)
@else
@endif
@endforeach
@stop