@extends('layouts.location_app') @section('title', 'Patients Safety Alerts') {{-- @section('top-nav-title', 'Patients Safety Alerts') --}} @section('content')
Patients Safety Alerts
@if(request()->query('success'))
{{request()->query('success')}}
@endif @if(request()->query('error'))
{{request()->query('error')}}
@endif

@if(request()->query('format') == 'table') @if(count($received_alerts)) @include('location.view_psa_table_record') @else @endif
Date & Actions Alert & Class Type & Originator Actions
No Record Available
@else @if(count($received_alerts))
@include('location.view_psa_timeline_record')
Start
@else
No Record Available
@endif @endif
@endsection