{{ __('Unit') }}

@php if (env('ORG_TYPE') == 'demo' || env('ORG_TYPE') == 'baramati') { $title = "SSR"; } else { $title = "DSR"; } @endphp

Add Unit

@csrf
@error('unit_name')
*{{ $message }}
@enderror

List of Unit

@if ($units) @php $i = 1; @endphp @foreach ($units as $r) @endforeach
Sr NO Unit
{{$i++}} {{$r->UnitName}}
@else

No any Unit found

@endif