@extends('layout.app') @section('title', __('units')) @section('content')
{{ __('units') }}
@foreach ($units as $unit) @endforeach
{{ __('sl') }} {{ __('code') }} {{ __('name') }} {{ __('base_unit') }} {{ __('operator') }} {{ __('operation_value') }} {{ __('action') }}
{{ $loop->iteration }} {{ $unit->code }} {{ $unit->name }} {{ $unit->baseUnit->name ?? 'N/A' }} {{ $unit->operator ?? 'N/A' }} {{ $unit->operation_value ?? 'N/A' }}
@endsection