@extends('layouts.app') @section('title', $hotel->name) @section('page-title', $hotel->name) @section('content')
{{ $hotel->city }}, {{ $hotel->state }} — Registered {{ $hotel->created_at->format('d M Y') }}
| Plan | Type | Duration | Amount | Start | End | Status |
|---|---|---|---|---|---|---|
| {{ $sub->plan->name ?? '—' }} | {{ ucfirst($sub->type) }} | {{ ucfirst($sub->duration) }} | ₦{{ number_format($sub->amount_paid, 0) }} | {{ $sub->start_date->format('d M Y') }} | {{ $sub->end_date ? $sub->end_date->format('d M Y') : 'Lifetime' }} | @if($sub->status==='active') Active @elseif($sub->status==='expired') Expired @elseif($sub->status==='suspended') Suspended @else {{ ucfirst($sub->status) }} @endif |
| No subscription history | ||||||
| Name | Role | Status | Last Login |
|---|---|---|---|
{{ $member->name }} {{ $member->email }} |
{{ str_replace('_',' ',ucfirst($member->role)) }} | {{ ucfirst($member->employment_status) }} | {{ $member->last_login ? $member->last_login->diffForHumans() : 'Never' }} |
| No staff yet | |||