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
import createTextMaskInputElement from '../../node_modules/text-mask-core/src/createTextMaskInputElement.js' | |
export default { | |
// Input event callback will be stored in this variable | |
// because we'll need it for unbind method | |
callback: null, | |
bind (el, binding, vnode) { | |
// Check for empty value is good for list rendering (some inputs has no masks) |
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 | |
namespace App\Pagination; | |
use Illuminate\Pagination\BootstrapThreePresenter; | |
use Illuminate\Support\HtmlString; | |
class MaterializeCssPresenter extends BootstrapThreePresenter | |
{ | |
/** |