@extends($master)
@section('title', 'Manage Sub Category')
@section('body')
| SL No |
Test ID |
Test Type |
Name |
Price |
Discount |
Status |
Action |
@foreach($tests as $test)
| {{$loop->iteration}} |
{{$test->test_id}} |
{{$test->category->name}} |
{{$test->name}} |
{{$test->price}} |
{{$test->discount}} |
@if($test->status == 1)
Published |
@else
UnPublished |
@endif
|
@endforeach
@endsection