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

POSITION DETAILS

NAME:{{$position->title}}

GUESTS
@foreach($guests as $guest) @endforeach
NAME COMPANY POSITION EMAIL CONTACT NUMBER CONTACT PERSON GROUP STATUS
{{$guest->name}} {{$guest->company->name ?? '-'}} {{$guest->position->title ?? '-'}} {{$guest->email ?? '-'}} {{$guest->contact_number ?? '-'}} {{$guest->contact_person->name ?? '-'}} {{$guest->group ?? '-'}} @if($guest->status == 0) DID NOT ATTEND @else ATTENDED @endif
{{$guests->links()}}
@stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush