View Welcome Greeting
@if (session('success'))
{{ session('success') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
Welcome Greeting Details
Welcome Greeting Content {{ $welcomeGreeting->is_active ? 'Active' : 'Inactive' }}
{!! $welcomeGreeting->content !!}
Welcome Image
@if ($welcomeGreeting->imageExists())
@else
@endif
Image Title: {{ $welcomeGreeting->title }}
@if ($welcomeGreeting->alt_text)Alt Text: {{ $welcomeGreeting->alt_text }}
@endifFile Size: {{ $welcomeGreeting->human_file_size }}
Image File Not Found
The image file could not be located on the server.
Assignment Information
@if ($summary['general'])
General Assignment
@endif
@if ($summary['personal_rooms']->count() > 0)
This greeting is assigned to ALL rooms.
Personal Assignment
@endif
@if (!$summary['general'] && $summary['personal_rooms']->count() == 0)
Assigned to {{ $summary['personal_rooms']->count() }} specific room(s):
@foreach ($summary['personal_rooms'] as $room)
{{ $room->room }}
@endforeach
No Assignment
@endif
This greeting is not currently assigned to any rooms.
Basic Information
| Title: | {{ $welcomeGreeting->title }} |
| Status: | @if ($welcomeGreeting->is_active) Active @else Inactive @endif |
| Created: | {{ $welcomeGreeting->created_at->format('M d, Y \a\t H:i') }} |
| Last Updated: | {{ $welcomeGreeting->updated_at->format('M d, Y \a\t H:i') }} |
Actions
@if (!$summary['general'])
@endif
Edit Greeting
Back to List
Technical Details
| Original Filename: |
{{ $welcomeGreeting->original_filename }}
|
| MIME Type: |
{{ $welcomeGreeting->mime_type }}
|
| Storage Path: |
{{ $welcomeGreeting->image_path }}
|
| Image URL: | View URL |