@extends('admin.layouts.app') @section('title') @lang('Dashboard') @endsection @section('content')
| @lang('ID') | @lang('Name') | @lang('Total Order') | @lang('Total Quantity') | @lang('Provider') | @lang('Action') |
|---|---|---|---|---|---|
| @lang($sale->service->id) | {{\Str::limit(optional($sale->service)->service_title, 30)}} | {{$sale->count}} | {{$sale->quantity}} | {{ optional($sale->service->provider)->api_name ?? 'N/A' }} |
| @lang('Username') | @lang('Email') | @lang('Phone') | @lang('Balance') | @lang('Status') | @lang('Action') | |
|---|---|---|---|---|---|---|
| @lang($user->username) | @lang($user->email) | @lang(($user->phone)? : 'N/A') | {{getAmount($user->balance)}} {{trans(config('basic.currency'))}} | {{ $user->status == 0 ? 'Inactive' : 'Active' }} | ||
| @lang('No User Data') | ||||||