ClearBowl/api/app/Repositories/ProductsRepository.php

16 lines
216 B
PHP
Raw Normal View History

2019-12-04 12:49:41 +01:00
<?php
namespace App\Repositories;
use App\Models\Product;
class ProductsRepository implements ProductsRepositoryInterface
{
public function create($data)
{
return Product::create($data);
}
}