25 lines
		
	
	
		
			574 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			574 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Propaganistas\LaravelPhone\PhoneNumber;
 | |
| 
 | |
| if (! function_exists('phone')) {
 | |
|     /**
 | |
|      * Get a PhoneNumber instance or a formatted string.
 | |
|      *
 | |
|      * @param string       $number
 | |
|      * @param string|array $country
 | |
|      * @param string       $format
 | |
|      * @return string|Propaganistas\LaravelPhone\PhoneNumber
 | |
|      */
 | |
|     function phone($number, $country = [], $format = null)
 | |
|     {
 | |
|         $phone = PhoneNumber::make($number, $country);
 | |
| 
 | |
|         if (! is_null($format)) {
 | |
|             return $phone->format($format);
 | |
|         }
 | |
| 
 | |
|         return $phone;
 | |
|     }
 | |
| }
 | 
