@extends('layouts.app')
@section('content')
{{__("No.")}} |
{{__("Code")}} |
{{__("Equipment")}} |
{{__("Category")}} |
{{__("Price")}} |
{{__("Active")}} |
|
@foreach($oprema as $rbr => $opr)
{{($rbr+1).'.'}} |
{{$opr->code}} |
{{$opr->naziv}} |
{{$opr->category}} |
{{$opr->price}} |
@if($opr->is_active == 1) {{__("YES")}} @else {{__("NO")}} @endif |
@if ($admin)
@endif
|
@endforeach
@endsection