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

{{__("Equipment")}}

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