HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/resources/views/backend/delivery_boys/
Upload File :
Current File : /var/www/devs.lapieza.net/resources/views/backend/delivery_boys/order_collection_form.blade.php


<div class="modal-header">


    <h5 class="mb-0 h6">{{translate('Collection From Delivery Boy')}}</h5>


    <button type="button" class="close" data-dismiss="modal">


    </button>


</div>





<form class="form-horizontal" action="{{ route('collection-from-delivery-boy') }}" method="POST" enctype="multipart/form-data">





    <div class="modal-body">


        @csrf


        <div class="form-group row">


            <label class="col-md-4 col-from-label">


                {{translate('Deliver Boy')}}


            </label>


            <div class="col-md-8">


                <input type="hidden" name="delivery_boy_id" value="{{ $delivery_boy_info->user_id }}">


                <input type="text" class="form-control" value="{{ $delivery_boy_info->user->name }}" readonly="">


            </div>


        </div>





        <div class="form-group row">


            <label class="col-md-4 col-from-label">


                {{translate('Collection From Delivery Boy')}}


            </label>


            <div class="col-md-8">


                <input type="text" class="form-control" value="{{ $delivery_boy_info->total_collection }}" readonly="">


            </div>


        </div>





        <div class="form-group row">


            <label class="col-md-4 col-from-label">


                {{translate('Collected Amount')}}


            </label>


            <div class="col-md-8">


                <input type="number" class="form-control" id="payout_amount" name="payout_amount">


            </div>


        </div>





    </div>


    <div class="modal-footer">


        <button type="submit" id="payout_btn" class="btn btn-primary">{{ translate('Collection') }}</button>


        <button type="button" class="btn btn-light" data-dismiss="modal">{{translate('Cancel')}}</button>


    </div>


</form>








@section('script')


    <script type="text/javascript">





    (function($) {


    "use strict";





    })(jQuery);





    </script>


@endsection