PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
MtnMomo
/
Scope
<?php /** * @package MtnMomo * @author TechVillage <support@techvill.org> * @contributor Md. Mostafijur Rahman <[mostafijur.techvill@gmail.com]> * @created 12-02-23 */ namespace Modules\MtnMomo\Scope; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Scope; class MtnMomoScope implements Scope { public function apply(Builder $builder, Model $model) { $builder->where('alias', 'mtnmomo'); } }
[+]
..
[-] MtnMomoScope.php
[edit]