App\Http\Controllers\RecurringInvoiceController::index PHP Méthode

index() public méthode

public index ( ) : mixed
Résultat mixed
    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'])];
        return response()->view('list', $data);
    }
RecurringInvoiceController