@extends('layouts.app') @section('content')

@lang('crud.np_ts.index_title')

@forelse($npTs as $npT) @empty @endforelse
@lang('crud.np_ts.inputs.date') @lang('crud.np_ts.inputs.floor') @lang('crud.np_ts.inputs.machine_type') @lang('crud.np_ts.inputs.npt_minutes') @lang('crud.np_ts.inputs.reason') @lang('crud.common.actions')
{{ $npT->date->format('d-M-y') }} {{ $npT->floor ?? '-' }} {{ $npT->machine_type ?? '-' }} {{ $npT->npt_minutes ?? '-' }} {{ $npT->reason ?? '-' }}
@can('update', $npT) @endcan @can('view', $npT) @endcan @can('delete', $npT)
@csrf @method('DELETE')
@endcan
@lang('crud.common.no_items_found')
{!! $npTs->render() !!}
@endsection