{{ __('Royalty Material') }}

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

Add Royalty Materials

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

List of Royalty Material

@if ($materials) @php $i = 1; @endphp @foreach ($materials as $r) @endforeach
Sr NO Material Name @if (env('ORG_TYPE') == 'demo' || env('ORG_TYPE') == 'baramati') SSR Material @else DSR @endif Material Action
{{ $i++ }} {{ $r['MaterailName'] }} {{ $r['MaterialName'] }}
@else

No any material found

@endif