@extends('admin.layout') @push('css') @endpush @section('content')

{{ __('HERRAMIENTAS REGISTRADAS') }}
@if (count($invherramientas) > 0) @foreach ($invherramientas as $invherramienta) @endforeach @else @endif
{{ __('ID') }} {{ __('NOMBRE') }} {{ __('CODIGO DEL PRODUCTO') }} {{ __('STOCK') }} {{ __('IMAGEN') }} {{ __('ACCIÓN') }}
{{ $invherramienta->id }} {{ $invherramienta->nombre }} {{ $invherramienta->codigo }} @if ($invherramienta->stock) {{ $invherramienta->stock }} @else {{ __('-') }} @endif @if ($invherramienta->imagen) s/{{ $invherramienta->imagen }} @else {{ __('-') }} @endif
{{ __('No hay datos disponibles') }}
@stop @include('invherramientas.modal.create') @section('js') @stop