@extends('_global.user.frame') @section('user-content') @if ($user->isFreelancer()) {{-- Dashboard Income --}}

Income

{{ '$' . $monthlyTotal }}
This month
{{ '$' . $grandTotal }}
Total

Sales More

@foreach($salesHistory as $history) @endforeach
Date Product Format price
{{ $history->order_paid_time }} {{ $history->product_title }} {{ $history->format_title }} {{ $history->price }}
@else

Dashboard

Name
{{ $user->name }}
@endif @stop