@extends('admin.layout') @section('content')

Blood Tests

Add Blood
@if (session('success'))
{{ session('success') }}
@endif {{-- --}} @foreach ($tests as $index => $test) {{-- --}} @endforeach
# Blood Test NamePriceActions Created At
{{ $index + 1 }} {{ $test->test_name }}₹{{ number_format($test->price, 2) }} Edit
@csrf @method('DELETE')
{{ $test->created_at->format('d M Y') }}
@endsection