mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
14 lines
387 B
PHP
Executable File
14 lines
387 B
PHP
Executable File
@extends('header')
|
|
|
|
@section('content')
|
|
|
|
{{ Button::primary_link(URL::to('invoices/create'), 'New Invoice', array('class' => 'pull-right')) }}
|
|
|
|
{{ Datatable::table()
|
|
->addColumn('Number', 'Client', 'Amount', 'Date')
|
|
->setUrl(route('api.invoices'))
|
|
->setOptions('sPaginationType', 'bootstrap')
|
|
->setOptions('bFilter', false)
|
|
->render() }}
|
|
|
|
@stop |