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

Welcome to your dashboard {{ Auth::user()->name }}

@if(Auth::user()->should_enter_card == 0)

Plan

@if($plan_subscribed && $freemium)
{{$plan_subscribed->name}}
@elseif($plan_subscribed)
{{$plan_subscribed->name}}
@if($user->onTrial())

(Free trial)

@endif @if($user->subscription('default')->cancelled())

(Cancelled)

@endif @elseif($user->subscription('default') && $user->subscription('default')->cancelled())
No plan

(Cancelled)

@else
Freemium
@endif

@if(!$freemium)

Days remaining

{{$daysRemaining }}
@else

Bookings a month per user

0
@endif

No. of users

{{$licences}}

Lifetime bookings

{{count($bookings)}}

@elseif (Auth::user()->should_enter_card == 1) @endif @if(Auth::user()->should_enter_card == 0) @if (count($getMonthlyBookingsCompany) > 0 )

Booking Overview

@endif @if (count($getVenuesLocations) > 0 )

Booking locations

Top Users by bookings

@if(count($bookings) > 0)
@else

No bookings from your users

@endif
@endif @endif
@endsection @push('scripts') @if(Session::has('error')) @endif @endpush