invoiceninja/app/models/Product.php

10 lines
182 B
PHP
Raw Normal View History

2013-11-26 14:45:07 +02:00
<?php
2013-12-04 18:20:14 +02:00
class Product extends EntityModel
2015-01-11 14:30:08 +02:00
{
public static function findProductByKey($key)
{
return Product::scope()->where('product_key', '=', $key)->first();
}
}