@extends('layouts.app') @section('title', 'Request for payment') @section('content')

Request for payment


@if($unbilled_tasks->count() > 0)
@foreach ($unbilled_tasks as $key=>$order) @endforeach
# Item Amount
{{ $key + 1 }} {{ $order->number }} {{ format_money($order->staff_payment_amount) }}
Total {{ format_money($data['total']) }}
Submit Payout Request
{{ csrf_field() }}
{{ showError($errors, 'name') }}
{{ showError($errors, 'address') }}
{{ showError($errors, 'note') }}
{{ showError($errors, 'staff_invoice_number') }}
{{ format_money($data['total']) }}
@else
Sorry, there is no unbilled work by you
@endif
@endsection