@extends('layouts.master') @section('content')
@include('partials.clientheader') @include('partials.userheader', ['changeUser' => true])

@lang('Overview')

@include('clients.tabs.projectstab') @include('clients.tabs.tasktab') @include('clients.tabs.leadtab') @if(Entrust::can('invoice-see')) @include('clients.tabs.invoicetab') @endif @if($filesystem_integration) @include('clients.tabs.documenttab') @endif

{{ __('Recent appointments') }}

@if($recentAppointments->isEmpty())
@lang('No recent appointments for the last 3 months')
@endif
    @foreach($recentAppointments as $recentAppointment)
  • {{$recentAppointment->title}}
    {{$recentAppointment->start_at->format(carbonFullDateWithText())}} - {{$recentAppointment->end_at->format(carbonFullDateWithText())}}


  • @endforeach
@stop