@extends('templates.adminlte') @section('content-header')

Productos

@endsection @section('content')
{{-- Button to import data --}} @foreach ($products as $product) @endforeach
Nombre Duración Disparos Calibre stock Precio Acciones
{{ $product->name }} {{ $product->duration }} {{ $product->shots }} {{ $product->caliber }} @if($product->inventories->first() != null) {{ $product->inventories->first()->pivot->quantity }} @endif {{-- Format $x,xxx.xx --}} @if($product->inventories->first() != null) ${{ number_format($product->inventories->first()->pivot->price, 2) }} @endif
@csrf @method('DELETE')
@endsection @section('extra-script') @endsection