| 1 | <?php namespace Modules\Recipe\Repositories\Eloquent; |
||
| 7 | class EloquentRecipeRepository extends EloquentBaseRepository implements RecipeRepository |
||
| 8 | { |
||
| 9 | public function create($data) |
||
| 10 | { |
||
| 11 | $recipe = $this->model->create($data); |
||
| 12 | |||
| 13 | event(new RecipeWasCreated($recipe, $data)); |
||
| 14 | |||
| 15 | return $recipe; |
||
| 16 | } |
||
| 17 | } |
||
| 18 |