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