@extends('layouts.frontend-member') @section('title', 'ใบเสร็จสัญญา') @section('content')
บันทึกสัญญา
@foreach ($buySellReports as $buySellReport)
@if ($buySellReport->direction == 'up') ซื้อขื้น: @else ซื้อลง: @endif {{ $buySellReport->product->name ?? '' }}
@if ($buySellReport->status == 0) รอดำเนินการ @else ชำระแล้ว @endif
จำนวนจำนวนเงินนที่ป้อน
{{ number_format(abs($buySellReport->amount), 2) }}
ราคาปัจจุบันเปิดหน่วย
{{--
{{ number_format($buySellReport->opening_point, 6) }}
--}}
จำนวนกำไรและขาดทุน
profit >= 0) style="color:#0dba76;" @else style="color:#f5465c;" @endif> {{ number_format($buySellReport->profit, 2) }}
เวลาเปิด
{{ $buySellReport->created_at->format('d/m/y H:i') }}
0
@endforeach
{{ $buySellReports->appends($_GET)->links() }}
@endsection @push('scripts') @endpush @push('styles') @endpush