@extends('layouts.master')
@section('run_custom_css')
@endsection
@section('top_header')
View Report Details
@endsection
@section('content')
Test Information
Central HOSPITAL
Maijdee-Court , Noakhali. Hello : 01823387518
Test Information
| Report ID |
{{ $report->id }} |
| Date |
{{ $report->created_at->format('d-m-Y h:i A')}} |
| Patient ID |
{{ $report->patient_id }} / {{ $report->created_at->format('m-d-Y')}} |
Patient Name |
{{ $report->patient->name }} |
| Test Name |
Room No. |
Price |
@foreach($reportproducts as $reportproduct)
| {{ $reportproduct->report_name }} |
{{ $reportproduct->report_room }} |
{{ $reportproduct->report_cost }} Tk. |
@endforeach
@if($report->due== 0)
PAID
@else
DUE
@endif
Collected By :: {{ Auth::user()->name }}
Received with thanks Tk. {{ $money }} Only
| Subtotal |
{{ $report->subtotal }} Tk. |
| Discount |
{{ number_format($report->discount + $report->percent_amount) }} Tk. |
| Total |
{{ $report->total }} Tk. |
| Paid |
{{ $report->receive_cash }} Tk. |
| Due |
{{ $report->due }} Tk. |
@endsection