@extends('template') @section('content')
Departamentos @if(routeAcess('admin.departamentos.create')) Novo Departamento @endif
@foreach($departamentos as $departamento) @endforeach
Departamento Responsável Email Status
{{ $departamento->name }} {{ $departamento->resp_name }} {{ $departamento->email }} {{ getStatus($departamento->active) }} @if(routeAcess('admin.departamentos.edit')) @endif @if(routeAcess('admin.departamentos.remove')) @endif
@stop() @section('js-admin-plan') @stop()