checkout fail

This commit is contained in:
merdan 2020-04-11 16:35:46 +05:00
parent 916ea81e91
commit 7fb70a72cf
3 changed files with 5 additions and 2 deletions

View File

@ -19,6 +19,7 @@ class ProcessPayment extends Job implements ShouldQueue
protected $order;
protected $session_data;
public $tries = 5;
/**
* Create a new job instance.
*

View File

@ -88,6 +88,7 @@ class Ticket extends MyBaseModel
public function booked(){
return $this->hasMany(Attendee::class)
->where('is_cancelled',false)
->where('is_refunded',false)
->orderBy('seat_no','asc');
}

View File

@ -30,7 +30,7 @@ return [
'connections' => [
'sync' => [
'driver' => 'sync',
'driver' => 'redis',
],
'database' => [
'driver' => 'database',
@ -62,7 +62,8 @@ return [
'redis' => [
'driver' => 'redis',
'queue' => 'default',
'expire' => 60,
'retry_after' => 90,
'block_for' => 5,
],
],
/*