@extends('template') @section('content')
Planos com Binagem @if(routeAcess('admin.plans.bin.create')) Novo Plano @endif @foreach($plans as $plan) @endforeach
Nome Alias Preço Visivel Deduz crédito Libera crédito Ações
{{ $plan->name }} {{ $plan->apelido }} R$ {{ formatMoney($plan->price) }} @if($plan->visible == 'yes') Sim @else Não @endif @if($plan->descontar_credito == 'yes') Sim @else Não @endif @if($plan->liberar_creditos == 'yes') Sim @else Não @endif @if(routeAcess('admin.plansbin..edit')) @endif @if(routeAcess('admin.plans.bin.remove')) @endif
@stop() @section('js-admin-plan') @stop()