mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
14 lines
403 B
PHP
Executable File
14 lines
403 B
PHP
Executable File
@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 |