@extends('layouts.master') @section('title') {{ __('sentence.All Prescriptions') }} @endsection @section('content')
{{ __('sentence.All Prescriptions') }}
@foreach($prescriptions as $prescription) @endforeach
ID {{ __('sentence.Patient') }} {{ __('sentence.Created') }} {{ __('sentence.Content') }} {{ __('sentence.Actions') }}
{{ $prescription->id }} {{ $prescription->User->name }} {{ $prescription->created_at->format('d M Y H:i') }}
{{ $prescriptions->links() }}
@endsection