Files
2026-03-20 21:47:02 +05:00

16 lines
273 B
PHP
Executable File

<?php
namespace App\Ship\Models;
interface Scope
{
/**
* Apply the scope to a given Eloquent query builder.
*
* @param Builder $builder
* @param Model $model
* @return void
*/
public function apply(Builder $builder, Model $model);
}