Users / {{$data->name}}
@if(!request()->type)
@if($data->is_merchant)
@endif
@elseif(request()->type == 'transactions')
@elseif(request()->type == 'ratings' && $data->is_merchant == 1)
@if(isset($data->rating_stats))
@if($data->ratings && $data->ratings->count() > 0)
@endforeach
@else
@endif
@else
@endif
@else
@endif
Students Information
Basic info, like students name and address, that you use on flipacademy.
Basics
Full Name
{{$data->name}}
Email
{{$data->email}}
Date Created
{{$data->created_at}}
Account Number
{{$data->account_number}}
Account Name
{{$data->account_name}}
Account Number
{{$data->account_bank}}
Transactions
Basic info, like what Transactions performed.
| ID | Amount | Status | Type | Date |
|---|---|---|---|---|
| {{$d->tnx_id}} | {{number_format($d->amount,2)}} NGN | {{$d->status}} | {{$d->type}} | {{$d->created_at}} |
Merchant Reviews
Customer reviews and ratings for this merchant's products.
{{ number_format($data->rating_stats['average'], 1) }}
Average Rating{{ $data->rating_stats['count'] }}
Total Reviews{{ $data->products->count() }}
Products{{ $data->products->where('qty', '>', 0)->count() }}
In StockCustomer Reviews
@foreach($data->ratings as $rating)
@if($rating->customer_image)
@else
@endif
{{ $rating->customer_name }}
{{ \Carbon\Carbon::parse($rating->created_at)->format('M d, Y') }}{{ $rating->comment ?: 'No comment provided' }}
@if($rating->product_image)
@endif
{{ $rating->product_title }}
No Reviews Yet
This merchant hasn't received any customer reviews yet.
Rating data not available.