mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
14 lines
403 B
PHP
14 lines
403 B
PHP
|
@extends('header')
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
{{ Button::primary_link(URL::to('clients/create'), 'New Client', array('class' => 'pull-right')) }}
|
||
|
|
||
|
{{ Datatable::table()
|
||
|
->addColumn('Client', 'Contact', 'Last Login', 'Email', 'Phone')
|
||
|
->setUrl(route('api.clients'))
|
||
|
->setOptions('sPaginationType', 'bootstrap')
|
||
|
->setOptions('bFilter', false)
|
||
|
->render() }}
|
||
|
|
||
|
@stop
|