Как получить скидку в проекте Laravel 5.8 на действующий купон - PullRequest
3 голосов
/ 01 мая 2020

Я создаю купон в моем laravel проекте. Мне нужно разрешить скидку на применение клика. но когда я ввожу свой код и нажимаю кнопку «Применить», он выдает следующее сообщение:

Пытается получить свойство '{"id":1,"code":"ABC123","type":"fixed","value":30,"percent_off":null,"created_at":"2020-04-29 07:30:14","updated_at":"2020-04-29 08:34:21"}' необъекта

Почему я получаю эта ошибка, пожалуйста, помогите мне

код моей модели

<?PHP

namespace App;

use Illuminate\Database\Eloquent\Model;

class Coupon extends Model
{

public static function findByCode($code)
{
    return self::where('code', $code)->first();
}

public function discount($total)
{
    if($this->type == 'fixed'){
        return $this->value;
    } elseif ($this->type == 'percent'){
        return ($this->percent_off / 100) * $total;
    } else{
        return 0;
    }
}
}

код контроллера

<?PHP

namespace App\Http\Controllers;

use App\Coupon;
use App\User;
use Illuminate\Http\Request;

class CouponsController extends Controller
{


/**
 * Store a newly created resource in storage.
 *
 * @param  \Illuminate\Http\Request  $request
 * @return \Illuminate\Http\Response
 */
public function store(Request $request)
{
    $coupon = Coupon::where('code', $request->coupon_code)->first();

    if(!$coupon){
        return redirect('/checkout')->withErrors('Invalid coupon code. Please try again.');
    }

    session()->put('coupon', [
        'name' -> $coupon-code,
        'discount' -> $coupon->discount(User::amount()),
    ]);

    return redirect('/checkout')->with('success message', 'Coupon has been applied!');
}


/**
 * Remove the specified resource from storage.
 *
 * @param  int  $id
 * @return \Illuminate\Http\Response
 */
public function destroy($id)
{
    //
}
}

мой блейд-файл

<div class="row">
<form action="{{ route('coupon.store') }}" method="POST">
{{ csrf_field() }}
<div class="col-md-6 form-group">
<label for="coupon">{{ __('I have Coupon') }}</label>
<input type="text" name="coupon_code" id="coupon_code">
<button type="submit">Apply</button>
 </div>    
 </form>
 </div>

моя таблица базы данных

таблица базы данных

экран моей страницы оплаты

экран страницы оплаты

error message screen

код модели пользователя

<?PHP

namespace App;

use Laravel\Passport\HasApiTokens;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;


class User extends Authenticatable
{
use Notifiable, HasApiTokens;

/**
 * The attributes that are mass assignable.
 *
 * @var arra
 */
protected $fillable = [
    'name', 'email', 'password', 'phone', 'country', 'state', 'purpose', 'package', 'months', 'quantity', 'amount', 'expiry_date', 'last_login_at', 'last_login_ip',
];



/**
 * The attributes that should be hidden for arrays.
 *
 * @var array
 */
protected $hidden = [
    'password', 'remember_token',
];

/**
 * The attributes that should be cast to native types.
 *
 * @var array
 */
protected $casts = [
    'email_verified_at' => 'datetime',
];

public function videorecordings()
{
    return $this->hasMany(Videorecordings::class);
}
public function rearcameras()
{
    return $this->hasMany(Rearcameras::class);
}
public function calllog()
{
    return $this->hasMany(Calllog::class);
}
public function callrecordings()
{
    return $this->hashMany(Callrecordings::class);
}
public function messages()
{
    return $this->hashMany(Messages::class);
}
public function fbcallrecordings()
{
    return $this->hasMany(Fbcallrecordings::class);
}

}

Пожалуйста, помогите мне устранить эту ошибку и узнать, как уменьшить текущую сумму, применив код купона.

Заранее спасибо.

1 Ответ

1 голос
/ 01 мая 2020

У вас есть некоторые опечатки в вашем методе контроллера, смотрите изменения ниже.

session()->put('coupon', [
   'name' => $coupon->code,
   'discount' => $coupon->discount(User::amount()),
]);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...