mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
16 lines
317 B
PHP
16 lines
317 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Order;
|
|
use Illuminate\Http\Request;
|
|
|
|
class OrdersController extends Controller
|
|
{
|
|
public function show($confirmationNumber)
|
|
{
|
|
$order = Order::findByConfirmationNumber($confirmationNumber);
|
|
return view('orders.show', ['order' => $order]);
|
|
}
|
|
}
|