@extends('layouts.app') {{-- Customize layout sections --}} @section('subtitle', 'GUESTS') @section('content_header_title', 'GUESTS') @section('content_header_subtitle', 'DETAILS') {{-- Content body: main page content --}} @section('content_body')

GUEST DETAILS

  • NAME: {{$guest->name}}
  • EMAIL: {{$guest->email}}
  • CONTACT NUMBER: {{$guest->contact_number}}
  • COMPANY: {{$guest->company->name ?? '-'}}
  • POSITION: {{$guest->position->title ?? '-'}}
  • REGION: {{$guest->region->name ?? '-'}}
  • CONTACT PERSON: {{$guest->contact_person->name ?? '-'}}
  • TABLE NUMBER: {{$guest->table_number->table_number ?? '-'}}
  • REMARKS: {{$guest->remarks ?? '-'}}
  • STATUS: @if($guest->status == 0) DID NOT ATTEND @else ATTENDED @endif
@stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush