@extends('admin.client.view') @section('client_tab_content')
{{ trans('crm.withdrawal') }}
@include('partials.messages')
@if (count($withdraws) > 0) @foreach($withdraws as $withdraw) @endforeach @else @endif
@lang('crm.withdrawal_table_number_heading') @lang('crm.settings_sales_heading_estimates') @lang('crm.invoice_payments_table_amount_heading') @lang('crm.invoice_payments_table_date_heading') @lang('crm.withdrawal_status')
{{$withdraw['id']}}
@if($withdraw['status'] == '1' && admin_permission('withdraw.confirm', $withdraw['client_id'])) Approve | Reject @endif
{{ format_estimate_number($withdraw['appendix_id']) }} {{ app_format_money($withdraw['total'], $withdraw['currency']) . ' / ' . app_format_money($withdraw['withdraw'], $withdraw['currency']) }} {{$withdraw['created_at']}} {!! format_withdraw_status($withdraw['status']) !!}
@stop @section('styles') @stop @section('scripts') @stop