@extends('space_portal.layouts.master') @section('title','Creating the third workspace. Join today') @section('header') @include('space_portal.partials.header') @endsection @section('content')

Hi , {{ Auth::user()->name }}

Welcome back to Reef

Number of Bookings

Bookings

{{count($thisMonthBookings)}}This Month

{{count($thisYearBookings)}}This Year

Cancellations

{{count($canceledMonthlyBookings)}}This Month

{{count($canceledYearlyBookings)}}This Year

Today’s Bookings

{{ now()->toFormattedDateString() }}

@if ((count($today_bookings) )== 0)

No Bookings for today

@else
@foreach ($today_bookings as $booking) @if($booking->freelancer->user && $booking->freelancer->user->name) @endif @endforeach
Name Space name Time
{{$booking->freelancer->user->name}}{{$booking->venue_name}} {{$booking->time_from}} - {{$booking->time_to}}
@endif
@endsection @push('scripts') @endpush