@extends('layouts.master')
@section('title',trans('dashboard'))
@section('header')
@endsection
@section('main')
{{trans('welcome')}}
{{trans('hi')}} {{ucfirst(Auth::user()->name)}}
{{trans('tether price')}}
{{trans('price')}}
{{trans('min price')}}
{{trans('max price')}}
{{trans('diff in 24h')}}
{{number_format(Setting::get('tetherPrice'))}} {{trans('toman')}}
{{number_format(Setting::get('tetherMinPrice'))}} {{trans('toman')}}
{{number_format(Setting::get('tetherMaxPrice'))}} {{trans('toman')}}
{{Setting::get('tetherDiff24')}}
{{trans('last transactions')}}
{{trans('show all transaction')}}
@foreach($gateways as $gateway)
@foreach($gateway->payments()->paginate(10) as $payment)
{{trans('id')}}
{{trans('status')}}
{{trans('amount')}}
{{trans('created at')}}
@endforeach
@endforeach
#{{$payment->token}}
{{strtoupper($payment->status)}}
{{$payment->amount}} $
{{$payment->created_at}}