9 lines
182 B
PHP
9 lines
182 B
PHP
<?php
|
|
|
|
class Product extends EntityModel
|
|
{
|
|
public static function findProductByKey($key)
|
|
{
|
|
return Product::scope()->where('product_key', '=', $key)->first();
|
|
}
|
|
}
|