@extends('layouts.app') @section('title', 'EndoCapture') @section('content')
@if(Session::has('message'))
{{ Session::get('message')}}
@endif @forelse($procedure as $l) @empty @endforelse
# Procedure Name ICD-9 ICD-10 Select
{{ $l->case_id }} {{ $l->procedure_name }} {{ $l->firstname }} {{ $l->lastname}} @php $acc = json_decode($l->icd9); @endphp @if($l->icd9!="") @foreach ($acc as $a) @if($a!="") {{ str_limit($a, $limit = 35, $end = '...') }}
@endif @endforeach @endif
@php $acc = json_decode($l->recommendation); @endphp @if($l->recommendation!="") @foreach ($acc as $a) @if($a!="") {{ str_limit($a, $limit = 35, $end = '...') }}
@endif @endforeach @endif
No data!!!
{{ $procedure->links() }}
@endsection