Skip to content

Instantly share code, notes, and snippets.

@arshohag
Last active November 5, 2022 17:35
Show Gist options
  • Select an option

  • Save arshohag/b78dfb63a74253ca9d38167b3b6a7aea to your computer and use it in GitHub Desktop.

Select an option

Save arshohag/b78dfb63a74253ca9d38167b3b6a7aea to your computer and use it in GitHub Desktop.
Singapore Phone Number validation in Laravel
<?php
$this->validate($request, [
'phone' => 'regex:/^\+65(6|8|9)\d{7}$/',
]);
// It will validate SG phone numbers without a required parameter in laravel using validator.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment