It's fixed now!
The issue was there was a backslash at the end of the route name.
Route::resource('/admin/property-types', PropertyTypeController::class);
Fix
Route::resource('/admin/property-types/', PropertyTypeController::class);