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