@extends('layouts.master-vnext') @section('page-title') Manage bookings @endsection @section('content')
{{ Form::text("q", $searchQuery, ['class' => 'form-control pull-right', 'placeholder' => 'Search ...']) }}
@foreach($bookings as $booking) @endforeach
Name Date #Nights Active?
{{ $booking->contact->lastName }}, {{ $booking->contact->firstName }} @date($booking->check_in_at, 'Y-m-d') - @date($booking->check_out_at, 'Y-m-d') {{ $booking->number_of_nights }} @if($booking->is_active) @else @endif edit
{!! csrf_field() !!} {!! method_field('DELETE') !!}
@endsection