comment return Cutomize Error Text The Firstorfail Laravel Exception

Route::bind('administrator', function ($id) {
        return Administrator::find($id) ?? abort(404, 'Administrator does not exist.');
});

Mohamad