@extends('layouts.frontend-member') @section('title', 'fund buysell') @section('content')

รายละเอียดกระเป๋าสตางค์

    @forelse ($allBuySells as $index => $buySell)
  • @if ($buySell->direction == 'up')
    คำสั่งทำรายการ -{{ number_format($buySell->opening_point, 2) }} {{ $setting_->currency_name }}
    ขึ้น วันครบกำหนด : 180s
    2024-01-04 23:36:05
    @elseif($buySell->direction == 'down')
    คำสั่งทำรายการ -{{ number_format($buySell->closing_point, 2) }} {{ $setting_->currency_name }}
    ลง วันครบกำหนด : 60 S
    {{ $buySell->created_at->format('d/m/Y H:i') }}
    @else
    หยุดกำไรขาดทุน {{ number_format($buySell->amount, 2) }} {{ $setting_->currency_name }}
    {{ $buySell->created_at->format('d/m/Y H:i') }}
    @endif
  • @empty
    ไม่มีบันทึกการทำธุรกรรม
    @endforelse
@endsection