@extends('layouts.app') @section('title', __('order.update_order')) @section('content')
{{-- CSRF Protection --}} @csrf @method('PUT')
{{ __('order.details') }}
#
{{ __('service.select') }}
 
{{ __('service.name') }} {{ __('app.qty') }} {{ __('app.price') }} {{ __('app.discount') }} {{ __('order.start_at') }} {{ __('order.end_at') }} {{ __('tax.tax') }} {{ __('app.total') }} {{ __('app.action') }}
{{ __('app.total') }} 0.00 0.00
{{ __('app.subtotal') }} 0.00
{{ __('tax.total') }} 0.00
{{ __('app.grand_total') }} 0.00
{{ __('payment.history') }}
@php $i=1; @endphp @if(!$payments->isEmpty()) @foreach ($payments as $payment) @endforeach @else @endif
# {{ __('app.date') }} {{ __('payment.type') }} {{ __('payment.amount') }} {{ __('payment.note') }} {{ __('app.action') }}
{{ $i++ }} {{ $payment->payment_date }} {{ $payment->paymentType->name }} {{ $payment->amount }} {{ $payment->note }}
{{ __('app.no_records_found') }}
{{ __('payment.payment') }}
@include("modals.service.create") @include("modals.party.create") @include("modals.payment-type.create") @endsection @section('js') @endsection