@extends('layouts.admin.app')
@section('content')
@if(count($classifications) > 0)
| Sr No |
Status |
Action |
Region |
CAS NO |
EC NO |
CAS Name |
Classification |
@php $i = 1; @endphp
@foreach($classifications as $key => $n)
| {{$i++}} |
@if($n->status == 0)
Deactive
@else
Active
@endif
|
|
{{$n->Region->name ?? ''}} |
{{$n->cas_no}} |
{{$n->ec_no}} |
{{$n->cas_name}} |
{!! $n->classification !!} |
@endforeach
@else
No Classification Found
@endif
@endsection
@section('scripts')
@endsection