@extends('laundry::layouts/contentLayoutMaster') @section('title', __('Edit Stock') ) @section('vendor-style') {{-- vendor css files --}} @livewireStyles @endsection @section('page-style') @endsection @section('content') @if(session()->has('message')) @endif @if($errors->any()) {!! implode('', $errors->all('')) !!} @endif
@csrf

{{ __('Changes made in this section will be applied to all RFID tags showing in list below') }}

@foreach($inventory->items as $item) @endforeach
{{ __('RFID') }} {{ __('Action') }}
{{ $item->rfid }}


@endsection @section('vendor-script') @livewireScripts {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection