App\Http\Controllers\ExpenseController::index PHP Method

index() public method

Display a listing of the resource.
public index ( ) : Response
return Response
    public function index()
    {
        return View::make('list', ['entityType' => ENTITY_EXPENSE, 'title' => trans('texts.expenses'), 'sortCol' => '3', 'columns' => Utils::trans(['checkbox', 'vendor', 'client', 'expense_date', 'amount', 'category', 'public_notes', 'status', ''])]);
    }