4242424242424242 Visa
4012888888881881 Visa
4000056655665556 Visa (debit)
| before_script: | |
| - npm -v | |
| stages: | |
| - setup | |
| - codestyle | |
| - build | |
| - test | |
| - deploy |
| <?php | |
| namespace App; | |
| use Illuminate\Database\Eloquent\Builder; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Database\Query\Builder as QueryBuilder; | |
| use Illuminate\Database\Query\Expression; | |
| abstract class BaseModel extends Model |
| ((jQuery) -> | |
| jQuery.fn.extend incrementButtons: (options) -> | |
| defaults = | |
| minVal: null | |
| maxVal: null | |
| step: 1 | |
| incClass: "inc" | |
| decClass: "dec" | |
| callback: (value) -> |
| <?php | |
| class Model extends \Eloquent | |
| { | |
| protected $observables = ['readed']; | |
| protected static function boot() | |
| { | |
| parent::boot(); |
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |