Learner\Repositories\Eloquent\UserRepository::findWithTrashedById PHP Method

findWithTrashedById() public method

Find user by id with trashed.
public findWithTrashedById ( integer $id ) : User
$id integer
return Learner\Models\User
    public function findWithTrashedById($id)
    {
        return $this->model->withTrashed()->findOrFail($id);
    }