@extends(config('manager.views.layouts.master')) @section('content') @include('manager::partials.breadcrumb', [ 'pages' => ['Certificados'] ]) @include('manager::partials.page-header', [ 'title' => 'Certificados', 'link' => [ 'route' => route('manager.awards.create', $about->id), 'label' => 'Inserir Certificado', 'btn-type' => 'primary', ], ]) @include('manager::partials.messages')
@foreach ($awards as $award) @endforeach
Certificado Ações
{{ $award->title }}
@if ($awards->count() === 0)

Sem certificados até o momento.

@endif @stop