@extends('layouts.app') @section('form-title') {{ __('New open tasks') }} @endsection @section('form-sub-title') {{ __('Click a task for more information') }} @endsection @section('breadcrumb') @endsection @section('content')
{{ __('Projects') }}
@forelse ($notifications as $notification) @empty {{-- --}} @endforelse
{{ __('Client') }} {{ __('Task') }} {{ __('Email') }} {{ __('Status') }} {{ __('Created') }}
@if(!empty($notification->task->client)) {{ $notification->task->client->name }} @else   @endif @if(!empty($notification->task)) {{ $notification->task->title }} @else   @endif @if($notification->sender) {{ $notification->sender->name }} @else {{ $notification->from }} @endif {{ optional($notification->task)->display_status }} {{ $notification->created_at }}
{{ __('No result found') }}
{{ $notifications->links() }}
@endsection @push('child-scripts') @endpush