App\Ninja\Repositories\ExpenseRepository::all PHP 메소드

all() 공개 메소드

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