@extends('layouts.admin') @section('content')
{{ trans('cruds.withdraw.fields.id') }} | {{ $withdraw->id }} |
---|---|
{{ trans('cruds.withdraw.fields.affiliate') }} | {{ $withdraw->affiliate->name ?? '' }} |
{{ trans('cruds.withdraw.fields.amount') }} | {{ $withdraw->amount }} |
{{ trans('cruds.withdraw.fields.attributes') }} | {{ $withdraw->attributes }} |
{{ trans('cruds.withdraw.fields.receipt') }} | @if($withdraw->receipt) {{ trans('global.view_file') }} @endif |
{{ trans('cruds.withdraw.fields.paid_at') }} | {{ $withdraw->paid_at }} |
{{ trans('cruds.withdraw.fields.status') }} | {{ App\Models\Withdraw::STATUS_SELECT[$withdraw->status] ?? '' }} |