@extends('main') @section('css') @endsection @section('content')
@if(session('message'))
@endif
@if(!empty($withdraws)) @foreach($withdraws as $w) @endforeach @endif
Request Date Paid Date Name Amount Status Slip Payment Option
{{ date('d-m-Y H:i:s', strtotime($w->created_at)) }} {{ $w->agent->name }} {{ number_format($w->amount, 0, ',', '.') }} {!! $w->status == 'unpaid' ? 'UNPAID' : 'PAID' !!} {!! $w->bukti_pembayaran ? 'See Slip' : '-' !!} @if($w->status == 'unpaid') @else PAID @endif
@endsection @section('js') @endsection