@extends('layouts.master_home') @section('dashboard_content')

{{$userData->first_name}} {{$userData->last_name}} reports

@if($isPrimary) Back @else Back @endif
@if (\Session::has('success'))

{{ \Session::get('success') }}


@endif
Reports Listing
@foreach ($userReports as $reports) @endforeach
Title Appointment Date Action
{{$reports['title']}} {{$reports['appointment_date']}} View
@endsection