@extends('frontLayout.frontlayout') @section('content') @php use Illuminate\Support\Str; @endphp
@include('creatorDashboard.sidebar')

Members

{{$members ? $members : '0' }}

Total

Earnings

{{$earnings ? $earnings : '0' }}

Per month

Satisfaction

{{$rating}}%

@if(isset($creatorMeeting) && $creatorMeeting) @endif
@if(isset($creatorMeeting) && $creatorMeeting) @foreach($listing as $key => $m)

Meeting

{{Str::limit($m['topic'],255)}}

Date: {{date('d-M-Y',strtotime($m['date']))}}

Time: {{date('h:ia',strtotime($m['time']))}}

Participants: {{$m['participant']}}

@endforeach @else

Meeting

@endif
@if($earnings)
@if($totalRatingCount)
Satisfaction
@foreach($ratings as $key => $r)
  • @for($i=1; $i<=5; $i++) @if($i<=$r['for']) @else @endif @endfor
  • ({{$r['count']}})

{{$r['percent']}}%

@endforeach
@endif
@endif
@include('frontend.partials.dashboardFooter')
@include('creatorDashboard.home.modal') @endsection