@extends('inventories.layout') @section('inventories.content')
@foreach($inventories as $inventory) @endforeach
Name Rate Actions
{{ $inventory->name ?: "-" }} {{ $inventory->rate ? number_format($inventory->rate) : "-" }} @if($inventory->trashed())
@csrf @method('PUT')
@csrf @method('DELETE')
@else @lang('Show')
@endif
@endsection