@extends('default.layout') @section('content')
@foreach($formas as $f) @endforeach
Nome Taxa Status Prazo dias Ações
{{$f->nome}} @if($f->tipo_taxa == 'valor') R$ @endif {{ number_format($f->taxa, 2, ',', '.') }} @if($f->tipo_taxa == 'perc') % @endif @if($f->status) Ativo @else Desativado @endif {{$f->prazo_dias}} @if(!in_array($f->chave, $tiposNaoDelete)) @endif
@endsection