@if (in_array('projects', user_modules()))
@endif
@if (in_array('tickets', user_modules()))
@endif
@if (in_array('contracts', user_modules()))
@endif
@if (in_array('invoices', user_modules()))
@lang('app.menu.invoices')
@endif
@if (in_array('projects', user_modules()))
@if (array_sum($statusWiseProject['values']) > 0)
@endif
@endif
@if (in_array('projects', user_modules()) && $viewMilestonePermission != 'none')
#
@lang('modules.projects.milestoneTitle')
@lang('modules.projects.milestoneCost')
@lang('app.project')
@forelse($pendingMilestone as $key=>$item)
{{ $key + 1 }}
{{ $item->milestone_title }}
@if (!is_null($item->currency_id))
{{ $item->currency->currency_symbol . $item->cost }}
@else
{{ $item->cost }}
@endif
{{ $item->project->project_name }}
@empty
@endforelse
@endif
@endsection
@push('scripts')
@endpush