App\Ninja\Repositories\ExpenseRepository::all PHP Method

all() public method

public all ( )
    public function all()
    {
        return Expense::scope()->with('user')->withTrashed()->where('is_deleted', '=', false)->get();
    }