@extends('layouts.main') @section('title', 'Cursos') @section('header') @include('layouts.header', [ 'user' => Auth::user(), ]) @endsection @section('nav') @include('layouts.navigation', [ 'menu' => $menu, ]) @endsection @section('body')
Nome | Campus | Ações |
---|---|---|
{{ $curso->name }} | {{ $curso->campus }} |
@include('components.buttons.btn-edit', [
'route' => route('curso_edit', ['id' => $curso->id]),
])
@include('components.buttons.btn-delete', [
'id' => $curso->id,
'route' => route('curso_delete', ['id' => $curso->id]),
])
|