@extends('layouts.'.Auth::user()->role.'_layout') @section('title') {{ __('All Prescriptions') }} @endsection @section('content')
{{ __('All Prescriptions') }}
@forelse($prescriptions as $prescription) @empty @endforelse
ID {{ __('Patient') }} {{ __('Content') }} {{ __('Created at') }} {{ __('Actions') }}
{{ $prescription->id }} {{ $prescription->User->name }} {{ $prescription->created_at->format('d M Y H:i') }}


No prescriptions found
{{ $prescriptions->links() }}
@endsection