@php $setting = []; if ($project->copylinksetting) { $setting = json_decode($project->copylinksetting); } $title = module_is_active('ProjectTemplate') && $project->type == 'template' ? __('Project Template') : __('Project'); @endphp @extends('layouts.invoicepayheader') @section('page-title') {{ $title . ' ' . $project->name }} @endsection @section('language-bar') @endsection @push('css') @endpush @section('action-btn')
@endsection @section('content'){{ __('Name') }} | {{ __('Status') }} | {{ __('Start Date') }} | {{ __('End Date') }} | {{ __('Cost') }} | {{ __('Progress') }} |
---|---|---|---|---|---|
{{ $milestone->title }} |
@if ($milestone->status == 'complete') @else @endif | {{ $milestone->start_date }} | {{ $milestone->end_date }} | {{ company_setting('defult_currancy', $project->created_by, $project->workspace) }}{{ $milestone->cost }} |
{{ $milestone->progress }}%
|
{{ __("It's looking like you may have taken a wrong turn. Don't worry... it happens to the best of us. Here's a little tip that might help you get back on track.") }}
{{ __("It's looking like you may have taken a wrong turn. Don't worry... it happens to the best of us. Here's a little tip that might help you get back on track.") }}
{{ __('Invoice') }} | {{ __('Issue Date') }} | {{ __('Due Date') }} | {{ __('Due Amount') }} | {{ __('Status') }} |
---|---|---|---|---|
{{ App\Models\Invoice::invoiceNumberFormat($invoice->invoice_id, $project->created_by, $project->workspace) }} | {{ company_date_formate($invoice->issue_date, $project->created_by, $project->workspace) }} |
@if ($invoice->due_date < date('Y-m-d'))
{{ company_date_formate($invoice->due_date, $project->created_by, $project->workspace) }} @else {{ company_date_formate($invoice->due_date, $project->created_by, $project->workspace) }} @endif |
{{ currency_format_with_sym($invoice->getDue(), $project->created_by, $project->workspace) }} | @if ($invoice->status == 0) {{ __(App\Models\Invoice::$statues[$invoice->status]) }} @elseif($invoice->status == 1) {{ __(App\Models\Invoice::$statues[$invoice->status]) }} @elseif($invoice->status == 2) {{ __(App\Models\Invoice::$statues[$invoice->status]) }} @elseif($invoice->status == 3) {{ __(App\Models\Invoice::$statues[$invoice->status]) }} @elseif($invoice->status == 4) {{ __(App\Models\Invoice::$statues[$invoice->status]) }} @endif |
{{ __("It's looking like you may have taken a wrong turn. Don't worry... it happens to the best of us. Here's a little tip that might help you get back on track.") }}
{{ __('Bill') }} | {{ __('Vendor') }} | {{ __('Bill Date') }} | {{ __('Due Date') }} | {{ __('Due Amount') }} | {{ __('Status') }} |
---|---|---|---|---|---|
@permission('bill show') {{ Workdo\Account\Entities\Bill::billNumberFormat($bill->bill_id, $bill->created_by, $bill->workspace) }} @else {{ Workdo\Account\Entities\Bill::billNumberFormat($bill->bill_id, $bill->created_by, $bill->workspace) }} @endif | {{ !empty($bill->vendor) ? $bill->vendor->name : '' }} | {{ company_date_formate($bill->bill_date, $bill->created_by, $bill->workspace) }} |
@if ($bill->due_date < date('Y-m-d'))
{{ company_date_formate($bill->due_date, $bill->created_by, $bill->workspace) }} @else {{ company_date_formate($bill->due_date, $bill->created_by, $bill->workspace) }} @endif |
{{ currency_format_with_sym($bill->getDue(), $bill->created_by, $bill->workspace) }} | @if ($bill->status == 0) {{ __(Workdo\Account\Entities\Bill::$statues[$bill->status]) }} @elseif($bill->status == 1) {{ __(Workdo\Account\Entities\Bill::$statues[$bill->status]) }} @elseif($bill->status == 2) {{ __(Workdo\Account\Entities\Bill::$statues[$bill->status]) }} @elseif($bill->status == 3) {{ __(Workdo\Account\Entities\Bill::$statues[$bill->status]) }} @elseif($bill->status == 4) {{ __(Workdo\Account\Entities\Bill::$statues[$bill->status]) }} @endif |
{{ __('Retainer') }} | {{ __('Customer') }} | {{ __('Account Type') }} | {{ __('Issue Date') }} | {{ __('Due Amount') }} | {{ __('Status') }} |
---|---|---|---|---|---|
{{ Workdo\Retainer\Entities\Retainer::retainerNumberFormat($retainer->retainer_id, $retainer->created_by, $retainer->workspace) }} | {{ !empty($retainer->customer) ? $retainer->customer->name : '' }} | {{ $retainer->account_type }} | {{ company_date_formate($retainer->issue_date, $retainer->created_by, $retainer->workspace) }} | {{ currency_format_with_sym($retainer->getDue(), $retainer->created_by, $retainer->workspace) }} | @if ($retainer->status == 0) {{ __(Workdo\Retainer\Entities\Retainer::$statues[$retainer->status]) }} @elseif($retainer->status == 1) {{ __(Workdo\Retainer\Entities\Retainer::$statues[$retainer->status]) }} @elseif($retainer->status == 2) {{ __(Workdo\Retainer\Entities\Retainer::$statues[$retainer->status]) }} @elseif($retainer->status == 3) {{ __(Workdo\Retainer\Entities\Retainer::$statues[$retainer->status]) }} @elseif($retainer->status == 4) {{ __(Workdo\Retainer\Entities\Retainer::$statues[$retainer->status]) }} @elseif($retainer->status == 5) {{ __(Workdo\Retainer\Entities\Retainer::$statues[$retainer->status]) }} @endif |
{{ __("It's looking like you may have taken a wrong turn. Don't worry... it happens to the best of us. Here's a little tip that might help you get back on track.") }}
{{ __('Proposal') }} | {{ __('Customer') }} | {{ __('Account Type') }} | {{ __('Issue Date') }} | {{ __('Status') }} |
---|---|---|---|---|
{{ \App\Models\Proposal::proposalNumberFormat($proposal->proposal_id, $proposal->created_by, $proposal->workspace) }} | {{ !empty($proposal->customer) ? $proposal->customer->name : '' }} | {{ $proposal->account_type }} | {{ company_date_formate($proposal->issue_date, $proposal->created_by, $proposal->workspace) }} | @if ($proposal->status == 0) {{ __(\App\Models\Proposal::$statues[$proposal->status]) }} @elseif($proposal->status == 1) {{ __(\App\Models\Proposal::$statues[$proposal->status]) }} @elseif($proposal->status == 2) {{ __(\App\Models\Proposal::$statues[$proposal->status]) }} @elseif($proposal->status == 3) {{ __(\App\Models\Proposal::$statues[$proposal->status]) }} @elseif($proposal->status == 4) {{ __(\App\Models\Proposal::$statues[$proposal->status]) }} @endif |
{{ __("It's looking like you may have taken a wrong turn. Don't worry... it happens to the best of us. Here's a little tip that might help you get back on track.") }}
{{ $activity->created_at->diffForHumans() }}