@extends('layouts.master') @section('title') {{trans_choice('general.follow_up',2)}} @endsection @section('content')
{{trans_choice('general.id',1)}} {{ $follow_up->id }}
{{trans_choice('general.assigned_to',1)}} @if(!empty($follow_up->assigned_to)) {{$follow_up->assigned_to->first_name}} {{$follow_up->assigned_to->last_name}} @endif
{{trans_choice('general.member',1)}} @if(!empty($follow_up->member)) {{$follow_up->member->first_name}} {{$follow_up->member->middle_name}} {{$follow_up->member->last_name}} @endif
{{trans_choice('general.category',1)}} @if(!empty($follow_up->category)) {{$follow_up->category->name}} @endif
{{trans_choice('general.status',1)}} @if($follow_up->status==1) {{ trans_choice('general.complete',1) }} @else {{ trans_choice('general.incomplete',1) }} @endif
{{trans_choice('general.created_at',2)}} {{ $follow_up->created_at }}

{{trans_choice('general.note',2)}}

{{trans_choice('general.follow_up',1)}} {{trans_choice('general.note',2)}}

{!! $follow_up->notes !!}

{{trans_choice('general.category',1)}} {{trans_choice('general.note',2)}}

@if(!empty($follow_up->category))

{!! $follow_up->category->notes !!}

@endif
@endsection @section('footer-scripts') @endsection