@extends('layouts.app') @section('content')

{{__("Materials")}}

@foreach($materials as $rbr => $mat) @endforeach
{{__("No.")}} {{__("Code")}} {{__("Material")}} {{__("Price")}} {{__("Active")}}
{{($rbr+1).'.'}} {{$mat->code}} {{$mat->material}} {{$mat->price}} @if($mat->is_active == 1){{__('YES')}} @else {{__('NO')}} @endif
@endsection