@extends('layouts.layout-2')
@section('content')
@include('admin.inventory.partials.wawi-ui')
| |
{{ __('Name') }} |
{{ __('Status') }} |
|
@foreach($values as $value)
|
|
{{ $value->name }} |
@if($value->active)
{{ __('Aktiv') }}
@else
{{ __('Inaktiv') }}
@endif
|
|
@endforeach
@endsection