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

All Lab Prices

Add Price
@foreach ($labPrices as $index => $price) @endforeach
# Lab Name Price (₹) Created At
{{ $labPrices->firstItem() + $index }} {{ $price->lab_name }} ₹ {{ number_format($price->price, 2) }} {{ $price->created_at->format('d M Y') }}
{!! $labPrices->withQueryString()->links('pagination::bootstrap-5') !!}
@endsection