@extends('template') @section('content')
Tipos de Propostas @if(routeAcess('admin.propostas.tipo.create')) Novo Tipo @endif
@foreach($tipos as $tipo) @endforeach
Cód. Tipo Status Data Cad. Editar
{{ $tipo->id }} {{ $tipo->tipo }} @if($tipo->status == 'Ativo') ATIVO @else INATIVO @endif {{ dateToBR($tipo->created_at) }} @if(routeAcess('admin.propostas.tipo.edit')) @endif
@stop() @section('js-admin-did') @stop()