1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Http/Controllers/RecurringInvoiceController.php

36 lines
824 B
PHP
Raw Normal View History

<?php namespace App\Http\Controllers;
use Utils;
use App\Ninja\Repositories\InvoiceRepository;
class RecurringInvoiceController extends BaseController
{
protected $invoiceRepo;
public function __construct(InvoiceRepository $invoiceRepo)
{
2016-03-02 14:36:42 +01:00
//parent::__construct();
$this->invoiceRepo = $invoiceRepo;
}
public function index()
{
$data = [
'title' => trans('texts.recurring_invoices'),
'entityType' => ENTITY_RECURRING_INVOICE,
'columns' => Utils::trans([
'checkbox',
'frequency',
'client',
'start_date',
'end_date',
'invoice_total',
'action'
])
];
2016-03-02 14:36:42 +01:00
return response()->view('list', $data);
}
}