@extends('Layouts.adminLayout') @section('title') {{__('List Pony')}} @endsection @section('css') @endsection @section('breadcrumb')
@endsection @section('content')
@php $i=1; @endphp @foreach($data['SellerPony'] as $value) @endforeach
{{__('Tracking Code')}} {{__('Store Name')}} {{__('User')}} {{__('Amount')}} {{__('Status')}} {{__('Request Date')}} {{__('Settlement Date')}} {{__('Possibilities')}}
{{$value->tracking_code}} {{$value->seller->store_name}} {{$value->user->name}}-{{$value->user->family}}({{$value->user->national_identity}}) {{fnumber_format($value->amount)}} {{$prefix}} @if($value->status==0)
{{__('Unpaid')}}
@elseif($value->status==1)
{{__('Paid')}}
@else
{{__('Inventory Deduction')}}
@endif
{{timestampDate($value->request_date,true)['date']}} {{timestampDate($value->settlement_date,true)['date']}} @if($value->status==0) @else ----- @endif
@endsection @section('script') @endsection