@extends('layouts.app') @section('title', 'Admin Dashboard') @section('page-title', 'Platform Dashboard') @section('content')
Welcome back, {{ auth()->user()->name }}. Here's what's happening.
| Hotel | Status | Registered |
|---|---|---|
|
{{ $hotel->name }}
{{ $hotel->city }}, {{ $hotel->state }}
|
@if($hotel->status === 'active') Active @elseif($hotel->status === 'trial') Trial @elseif($hotel->status === 'suspended') Suspended @else Pending @endif | {{ $hotel->created_at->format('d M Y') }} |
| No hotels yet | ||
| User | Action | Time |
|---|---|---|
|
{{ $log->user_name }}
{{ $log->module }}
|
{{ $log->action }} | {{ $log->created_at->diffForHumans() }} |
| No activity yet | ||