@if ($provider->isACorporateUser()) {$info = app('query')->getCorporateUserInformation();}

Corporate User

₦{number_format($info->credit_usage,2,'.',',')}

Your overall credit usage
@if ($provider->isACorporateMember())
@endif

Overview

Check these stats below in case you have missed something.

  • Bookings

    Overall bookings for all times

    {$info->bookings}
  • Approved Bookings

    Overall approved bookings

    {$info->approved_bookings}
  • Pending Bookings

    Overall pending bookings

    {$info->pending_bookings}
  • Declined Bookings

    Overall declined bookings

    {$info->declined_bookings}
  • Active

    Companies you can book with

    {$info->active}
  • Blocked

    Companies you cannot book with

    {$info->blocked}
  • Companies

    Companies you belong to

    {count($info->companies)}

All my corporate list

{$index = 1;} @foreach ($info->companies as $id => $row) {$index++;} @endfor
SN Company Bookings Status Credit Used
{$index} {ucfirst($row['company'])} {$row['bookings']} @if ($row['status']) Active @else Blocked @endif ₦{number_format($row['credit_used'],2,'.',',')}
@if (!$provider->isACorporateMember())
@endif
@partial('main-footer', ['message' => $message]); @else

Not a corporate user

You currently do not belong to a corporate company/account yet. You can also apply for a corporate account if you desire.

@if (!$provider->isACorporateMember()) Become a member @else Switch to admin @endif
@partial('basic-footer', ['partner' => '']); @endif