@extends('layouts.app') @section('page-title')
{{ __($pageTitle) }} #{{ $lead->id }} -
{{ ucwords($lead->company_name) }}
@lang('app.menu.home')
{{ __($pageTitle) }}
@lang('modules.lead.followUp')
@endsection @push('head-script')
@endpush @section('content')
@lang('modules.lead.profile')
@lang('modules.lead.proposal')
@lang('modules.lead.file')
@lang('modules.lead.followUp')
@if($gdpr->enable_gdpr)
@lang('app.menu.gdpr')
@endif
@lang('app.followUp')
@if($lead->next_follow_up == 'yes')
@lang('modules.followup.newFollowUp')
@endif
@lang('modules.tasks.lastCreated')
@lang('modules.tasks.dueSoon')
@forelse($lead->follow as $follow)
@lang('app.createdOn'): {{ $follow->created_at->format($global->date_format .' '.$global->time_format) }}
@lang('app.remark'):
{!! ($follow->remark != '') ? ucfirst($follow->remark) : "
Empty
" !!}
@lang('app.next_follow_up'): {{ $follow->next_follow_up_date->format($global->date_format .' '.$global->time_format) }}
@empty
@lang('modules.followup.followUpNotFound')
@endforelse
@lang('app.notice'):
@lang('modules.followup.followUpNote')
@lang('modules.followup.newFollowUp')
{!! Form::open(['id'=>'createFollow','class'=>'ajax-form','method'=>'POST']) !!} {!! Form::hidden('lead_id', $lead->id) !!}
@lang('app.next_follow_up')
@lang('app.description')
@lang('app.save')
{!! Form::close() !!}
@endsection @push('footer-script') {{----}} @endpush