@extends('layouts.app')
@section('content')
{{__("No.")}} |
{{__("Tools")}} |
{{__("Serial number")}} |
{{__("Type")}} |
{{__("Provider")}} |
{{__("Invoice number")}} |
{{__("Origin")}} |
{{__("Price")}} |
|
@foreach($tools as $rbr => $tool)
{{($rbr+1).'.'}} |
{{$tool->tool}} |
{{$tool->serial_number}} |
{{$tool->type}} |
{{$tool->provider}} |
{{$tool->invoice_number}} |
{{$tool->origin}} |
{{$tool->price}} |
|
@endforeach
@endsection