1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 18:01:35 +02:00
invoiceninja/app/models/Product.php

9 lines
165 B
PHP
Raw Normal View History

2013-11-26 13:45:07 +01:00
<?php
2013-12-04 17:20:14 +01:00
class Product extends EntityModel
2013-12-31 10:43:39 +01:00
{
2013-12-03 18:32:33 +01:00
public static function findProductByKey($key)
{
2013-12-04 17:20:14 +01:00
return Product::scope()->where('product_key','=',$key)->first();
}
2013-11-26 13:45:07 +01:00
}