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

Corporate

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

Your credit usage ₦{number_format($info->credit,0,'.',',')} credit limit

Overview

Check these stats below in case you have missed something.

  • Credit Limit

    Overall credit limit

    ₦{number_format($info->credit,0,'.',',')}
  • Credit Usage

    Current credit strength

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

    Your total members

    {$info->members_count}
  • Active

    Overall active members

    {$info->active_members}
  • Blocked

    Overall blocked members

    {$info->blocked_members}
  • Company Name

    {ucwords($info->company)}

@hiddenInput('corporateid', $info->corporateid); @csrf; @method('@addCorporateMember'); @hiddenInput('customerid', '');
{$awaiting = app('query')->getPendingBookingsForCorporateMember();} @if (count($awaiting) > 0)

Awaiting Approval

@foreach ($awaiting as $index => $row) @endforeach
SN Member Date Amount Narration
{$index + 1} {ucwords($row['customer'])} {$row['date']} ₦{number_format($row['amount'], 2, '.', ',')} {ucfirst($row['remark'])}
@endif

All Members

@if (count($info->members) == 0)
Your company list is currently empty.
@else @foreach ($info->members as $member) @endforeach
Avatar FullName Bookings Status
{ucwords($member->name . ' ' . $member->surname)} {$member->bookings} @if ($member->status) Active @else Blocked @endif
@endif
@partial('main-footer', ['message' => $message]); @else @php if ($provider->isACorporateUser()) func()->redirect('corperate-membership/users'); @endphp

Not a corporate member yet

You are not yet a corporate member of TripMata. We ask that you be patient with us if you've have submitted an application. Else, click on the button below to apply.

Become a member
@partial('basic-footer', ['partner' => '']); @endif