@extends('layouts.head_office_app') @section('title', 'Case Manager') @section('sidebar') @include('layouts.company.sidebar') @endsection @section('content')
@php use Carbon\Carbon; @endphp
Transfer Cases
@if (count($links) !=0) @foreach ($links as $link) @endforeach
Sr. Company Case Id's created At expire At Actions
{{$link->id}} {{$head_office->company_name}} {{implode(',', json_decode($link->case_ids,true))}} {{$link->created_at->format('d/m/Y h:i A')}} {{Carbon::parse($link->link_expiry)->format('d/m/Y h:i A')}}
@else
No Links found! 🙂
@endif
@endsection @section('case_manager_tabs') @endsection @section('styles') @endsection @section('scripts') @if(Session::has('success')) @elseif(Session::has('error')) @endif @endsection