@extends('layouts.member-app') @section('page-title')
{{ __($pageTitle) }}
@lang('app.menu.home')
{{ __($pageTitle) }}
@lang('app.update')
@endsection @push('head-script')
@endpush @section('content')
@lang('modules.payments.updatePayment')
{!! Form::open(['id'=>'updatePayment','class'=>'ajax-form','method'=>'PUT']) !!}
@if(in_array('projects', $modules))
@lang('app.selectProject')
--
@foreach($projects as $project)
id == $payment->project_id) selected @endif value="{{ $project->id }}">{{ $project->project_name }}
@endforeach
@endif @if(in_array('invoices', $modules))
@lang('app.selectInvoice')
--
@foreach($invoices as $invoice)
invoice_id == $invoice->id) selected @endif value="{{ $invoice->id }}">{{ $invoice->invoice_number }}
@endforeach
@endif
@lang('modules.invoices.currency')
@foreach($currencies as $currency)
id == $payment->currency_id) selected @endif value="{{ $currency->id }}">{{ $currency->currency_symbol.' ('.$currency->currency_code.')' }}
@endforeach
@lang('modules.invoices.amount')
@lang('modules.payments.paymentGateway')
Paypal, Authorize.net, Stripe, Bank Transfer, Cash or others.
@lang('modules.payments.transactionId')
@lang('modules.payments.paidOn')
paid_on)) value="{{ Carbon\Carbon::today()->format('d/m/Y H:i') }}" @else value="{{ $payment->paid_on->format('d/m/Y H:i') }}" @endif>
@lang('app.remark')
{{ $payment->remarks }}
@lang('app.status')
status == 'complete') selected @endif value="complete">@lang('app.completed')
status == 'pending') selected @endif value="pending">@lang('app.pending')
@lang('app.update')
{!! Form::close() !!}
@endsection @push('footer-script') @endpush