@extends('layouts.member-app') @push('head-script')
@endpush @section('page-title')
@lang($pageTitle)
@lang('app.menu.home')
@lang($pageTitle)
@lang('app.addNew')
@endsection @section('content')
{!! Form::open(['id'=>'createContract','class'=>'ajax-form','method'=>'PUT']) !!}
{{ $contract->subject }}
@lang('app.view') @lang('app.menu.contract')
@lang('app.menu.contract')
@lang('modules.contracts.contractRenewalHistory')
{{ $contract->contract_detail }}
@if($contract->signature)
Signature (Customer)
@endif
@lang('modules.contracts.renewContract')
@foreach($contract->renew_history as $history)
{{ $history->renewedBy->name }} :
@lang('modules.contracts.renewedThisContract'): ({{ $history->created_at->timezone($global->timezone)->format($global->date_format) }} {{ $history->created_at->timezone($global->timezone)->format($global->time_format) }})
@lang('modules.contracts.newStartDate'): {{ $history->start_date->timezone($global->timezone)->format($global->date_format) }}
@lang('modules.contracts.newEndDate') : {{ $history->end_date->timezone($global->timezone)->format($global->date_format) }}
@lang('modules.contracts.newAmount') : {{ $history->amount }}
@endforeach
@lang('app.edit') @lang('app.menu.contract')
@lang('app.client')
@foreach($clients as $client)
id == $contract->client_id) selected @endif>{{ ucwords($client->name) }}
@endforeach
@lang('app.subject')
@lang('app.amount') ({{ $global->currency->currency_symbol }})
@lang('modules.contracts.contractType')
@lang('modules.contracts.addContractType')
@foreach($contractType as $type)
{{ ucwords($type->name) }}
@endforeach
@lang('modules.timeLogs.startDate')
@lang('modules.timeLogs.endDate')
@lang('modules.contracts.contractName')
@lang('modules.contracts.alternateAddress')
{{ $contract->alternate_address ?? '' }}
@lang('modules.lead.mobile')
@lang('modules.clients.officePhoneNumber')
@lang('modules.stripeCustomerAddress.city')
@lang('modules.stripeCustomerAddress.state')
@lang('modules.stripeCustomerAddress.country')
@lang('modules.stripeCustomerAddress.postalCode')
@lang('modules.contracts.notes')
{{ $contract->description ?? '' }}
@lang('modules.contracts.companyLogo')
@lang('app.selectImage')
@lang('app.change')
@lang('app.remove')
@lang('app.update')
@lang('app.reset')
{!! Form::close() !!} {{--Ajax Modal--}}
Loading...
.
{{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush