Mobile = /^9989[012345789][0-9]{7}$/
All = /^998(9[012345789]|6[125679]|7[01234569])[0-9]{7}$/
Mobile = /^9989[012345789][0-9]{7}$/
All = /^998(9[012345789]|6[125679]|7[01234569])[0-9]{7}$/
| <? | |
| // Link image type to correct image loader and saver | |
| // - makes it easier to add additional types later on | |
| // - makes the function easier to read | |
| const IMAGE_HANDLERS = [ | |
| IMAGETYPE_JPEG => [ | |
| 'load' => 'imagecreatefromjpeg', | |
| 'save' => 'imagejpeg', | |
| 'quality' => 100 |
| {{ $var }} - Echo content | |
| {{ $var or 'default' }} - Echo content with a default value | |
| {{{ $var }}} - Echo escaped content | |
| {{-- Comment --}} - A Blade comment | |
| @extends('layout') - Extends a template with a layout | |
| @if(condition) - Starts an if block | |
| @else - Starts an else block | |
| @elseif(condition) - Start a elseif block | |
| @endif - Ends a if block |