@extends('admin.masters.base') @section('styles') @stop @section('pagetitle') Bookings overview @stop @section('crumbs')
  • Presentation Booking
  • @stop @section('pagecontents')

    Booking Panel

    @if(Auth::user()->hasRole(['site-admin', 'super-user'])) Add Booking @endif

    @if(isset($bookings)) @if (sizeof($bookings) == 0)
    Booking list is currently empty.
    @else
    @foreach ($bookings as $key => $b) @endforeach
    # Name Address Contact Details Existing Client Completed
    {{ $key +1}} {{ $b->firstname }} {{ $b->lastname }} {{ $b->address1 }}
    {{ $b->address2 }}
    {{ $b->town }} {{ $b->country }} {{ $b->postcode }}
    {{ $b->phone }}
    {{ $b->email }}
    @if(!$b->existing_client) No @else Yes @endif completed)checked @endif data-on="Yes" data-off="No" name="active">
    {{ $bookings->render() }}