2019-04-03 04:34:28 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-03 04:34:28 +02:00
|
|
|
|
|
|
|
namespace App\Repositories;
|
|
|
|
|
|
|
|
use App\Models\Product;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class ProductRepository extends BaseRepository
|
|
|
|
{
|
|
|
|
|
|
|
|
public function getClassName()
|
|
|
|
{
|
|
|
|
return Product::class;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function save(Request $request, Product $product) : ?Product
|
|
|
|
{
|
|
|
|
$product->fill($request->input());
|
|
|
|
$product->save();
|
|
|
|
|
|
|
|
return $product;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|