2013-11-26 13:45:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Product extends Eloquent
|
|
|
|
{
|
|
|
|
protected $softDelete = true;
|
2013-11-27 08:38:37 +01:00
|
|
|
|
|
|
|
public static function getProducts()
|
|
|
|
{
|
|
|
|
return Product::where('account_id','=',Auth::user()->account_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function findProduct($key)
|
|
|
|
{
|
2013-11-28 17:40:13 +01:00
|
|
|
return Product::getProducts()->where('key','=',$key)->first();
|
2013-11-27 08:38:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function getProductKeys($products)
|
|
|
|
{
|
2013-11-28 17:40:13 +01:00
|
|
|
$products = array_pluck($products, 'key');
|
2013-11-27 08:38:37 +01:00
|
|
|
$products = array_combine($products, $products);
|
|
|
|
|
|
|
|
return $products;
|
|
|
|
}
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|