{{ __('Material') }}
@php
if (env('ORG_TYPE') == 'demo' || env('ORG_TYPE') == 'baramati') {
$title = "SSR";
} else {
$title = "DSR";
}
@endphp
List of Materials
@if ($materials)
| Sr No. |
Material |
Rate Type |
Action |
@php $i = 1; @endphp
@foreach ($materials as $r)
| {{ $i++ }} |
{{ $r->MaterialName }} |
{{ $r->rate_type }} |
|
@endforeach
@else
No any material found
@endif