|
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Event;
|
|
|
|
class DrawController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$events = Event::with('auditions')->get();
|
|
|
|
return view('admin.draw.index', compact('events'));
|
|
}
|
|
}
|