1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 10:21:35 +02:00
invoiceninja/app/views/payments/index.blade.php
2013-11-26 14:45:07 +02:00

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