@extends('template') @section('content')
Serviços @if(routeAcess('admin.servicos.create')) Novo Serviço @endif
@foreach($servicos as $servico) @endforeach
Cód. Serviço Serviço Detalhes Comodato? Status Valor Data Cad. Editar
{{ $servico->id }} {{ $servico->name }} {{ $servico->detalhes }} @if($servico->comodato > 0) SIM @else NÃO @endif @if($servico->status == 'Ativo') ATIVO @else INATIVO @endif {{ financialPrice($servico->valor) }} {{ dateToBR($servico->created_at) }} @if(routeAcess('admin.servicos.edit')) @endif
@stop() @section('js-admin-did') @stop()