mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
12 lines
288 B
PHP
Executable File
12 lines
288 B
PHP
Executable File
@extends('header')
|
|
|
|
@section('content')
|
|
|
|
{{ Datatable::table()
|
|
->addColumn('Client', 'Invoice', 'Amount', 'Date')
|
|
->setUrl(route('api.payments'))
|
|
->setOptions('sPaginationType', 'bootstrap')
|
|
->setOptions('bFilter', false)
|
|
->render() }}
|
|
|
|
@stop |