47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\NominationEnsembles;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\NominationEnsembleEntry;
|
|
|
|
class ScobdaNominationAdminController extends Controller implements NominationAdminController
|
|
{
|
|
public function index()
|
|
{
|
|
$nominations = NominationEnsembleEntry::with('student')->with('ensemble')->get();
|
|
|
|
return view('nomination_ensembles.scobda.admin.index', compact('nominations'));
|
|
}
|
|
|
|
public function show(NominationEnsembleEntry $nominationEnsembleEntry)
|
|
{
|
|
// TODO: Implement show() method.
|
|
}
|
|
|
|
public function create()
|
|
{
|
|
// TODO: Implement create() method.
|
|
}
|
|
|
|
public function store()
|
|
{
|
|
// TODO: Implement store() method.
|
|
}
|
|
|
|
public function edit(NominationEnsembleEntry $nominationEnsembleEntry)
|
|
{
|
|
// TODO: Implement edit() method.
|
|
}
|
|
|
|
public function update(NominationEnsembleEntry $nominationEnsembleEntry)
|
|
{
|
|
// TODO: Implement update() method.
|
|
}
|
|
|
|
public function destroy(NominationEnsembleEntry $nominationEnsembleEntry)
|
|
{
|
|
// TODO: Implement destroy() method.
|
|
}
|
|
}
|