mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-27 15:45:11 +00:00
27 lines
672 B
PHP
27 lines
672 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Concert;
|
|
use Illuminate\Http\Request;
|
|
use App\Billing\PaymentGateway;
|
|
|
|
class ConcertOrdersController extends Controller
|
|
{
|
|
private $paymentGateway;
|
|
|
|
public function __construct(PaymentGateway $paymentGateway)
|
|
{
|
|
$this->paymentGateway = $paymentGateway;
|
|
}
|
|
|
|
public function store($concertId)
|
|
{
|
|
$concert = Concert::find($concertId);
|
|
$this->paymentGateway->charge(request('ticket_quantity') * $concert->ticket_price, request('payment_token'));
|
|
$order = $concert->orderTickets(request('email'), request('ticket_quantity'));
|
|
|
|
return response()->json([], 201);
|
|
}
|
|
}
|