@extends('layouts.admin.theme')
@section('title', env('APP_NAME').' :: '.__('Lista Xpto'))
@section('content')
@php $headLine = __('Lista Xpto'); @endphp
@include('components.buttons._headLineButtonsBackAdd', ['headLine' => $headLine, 'routeBack' => 'admin.dashboard', 'nameBack' => __('Voltar'), 'routeAdd' => 'admin.meuTest.create', 'nameAdd' => __('Novo'), 'permission' => 'ADMIN'])
@foreach($items as $i)
| {{ $loop->iteration }} | {{ $i->id }} | |
@endforeach
@endsection