@extends('layouts.main') @section('title', 'Início') @section('header') @include('layouts.header', [ 'user' => Auth::user(), ]) @endsection @section('nav') @include('layouts.navigation', []) @endsection @section('body')
# | Nome | Data de início | Data de fim | Status | Opções |
---|---|---|---|---|---|
{{ $index_row++ }} | {{ $pad->nome }} | {{ $pad->getDateInicio() }} | {{ $pad->getDateFim() }} | {{ $pad->getStatusAsText() }} | @include('components.buttons.btn-edit', [ 'btn_class' => 'btn btn-outline-primary', 'route' => route('pad_edit', ['id' => $pad->id]) ]) @include('components.buttons.btn-delete', [ 'id' => $pad->id, 'btn_class' => 'btn btn-outline-danger', 'route' => route('pad_delete', ['id' => $pad->id]) ]) |