This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'list[]': { | |
| required: true, | |
| minlength: 1 | |
| } | |
| ----------------------------- | |
| 'list[]': { | |
| required: "You must check at least 1 box", | |
| maxlength: "Check no more than {0} boxes" | |
| } | |
| ------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // app.js | |
| $.ajaxSetup({ | |
| // force ajax call on all browsers | |
| cache: false, | |
| // Enables cross domain requests | |
| crossDomain: true, | |
| // Helps in setting cookie |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php // \app\http\routes.php | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Application Routes | |
| |-------------------------------------------------------------------------- | |
| | | |
| | Here is where you can register all of the routes for an application. | |
| | It's a breeze. Simply tell Laravel the URIs it should respond to | |
| | and give it the controller to call when that URI is requested. | |
| | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Correct image orientation v1.0 | |
| Author: Mathuvathanan Mounasamy | |
| Licensed under the MIT license | |
| This funtion correct all the images' orientation in a given path or directory. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| display:inline-block; | |
| width:180px; | |
| white-space: nowrap; | |
| overflow:hidden !important; | |
| text-overflow: ellipsis; |