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