@extends('backend.layouts.master') @section('content')

Hostel Details

Edit

Name: {{ $hostel->name }}

Code: {{ $hostel->code }}

Gender: {{ ucfirst($hostel->gender) }}

Building: {{ $hostel->building }}

Total Capacity: {{ $hostel->total_capacity }}

Warden: {{ $hostel->warden }}

Contact: {{ $hostel->contact }}

Email: {{ $hostel->email }}

Address: {{ $hostel->address }}

Facilities: @if ($hostel->facilities) {{ implode(', ', json_decode($hostel->facilities)) }} @else None @endif

Status: {{ $hostel->is_active ? 'Active' : 'Inactive' }}

@endsection