@extends('public.header') @section('content')

 

@if($entityType == ENTITY_INVOICE && $account->getTokenGatewayId() && $client->hasAutoBillConfigurableInvoices())
{!! Button::info(trans("texts.manage_auto_bill"))->asLinkTo(URL::to('/client/invoices/recurring'))->appendIcon(Icon::create('repeat')) !!}
@endif

{{ $title }}

{!! Datatable::table() ->addColumn($columns) ->setUrl(route('api.client.' . $entityType . 's')) ->setOptions('sPaginationType', 'bootstrap') ->render('datatable') !!}
@if($entityType == ENTITY_RECURRING_INVOICE) {!! Former::open(URL::to('/client/invoices/auto_bill'))->id('auto_bill_form') !!} {!! Former::close() !!} @endif

 

@stop