#10 Promotion Modul, Kommentar 2

This commit is contained in:
Kevin Adametz 2021-11-09 18:40:18 +01:00
parent f0da981737
commit c9e1545693
128 changed files with 8194 additions and 637 deletions

View file

@ -31,7 +31,7 @@ class ProductRepository extends BaseRepository {
$data['amount_commission'] = isset($data['amount_commission']) ? 1 : 0;
$data['shipping_addon'] = isset($data['shipping_addon']) ? 1 : 0;
$data['max_buy'] = isset($data['max_buy']) ? 1 : 0;
$data['show_on'] = isset($data['show_on']) ? $data['show_on'] : null;
if($data['id'] === "new"){
$this->model = Product::create($data);

View file

@ -67,9 +67,11 @@ class UserPromotionRepository extends BaseRepository {
if(isset($data['promotion_admin_id'])){
$PromotionAdmin = PromotionAdmin::findOrFail($data['promotion_admin_id']);
$this->model = PromotionUser::create([
'promotion_admin_id' => $PromotionAdmin->id,
'user_id' => Auth::user()->id,
'user_address' => Auth::user()->getFullAddress()
]);
return $this->model;
}