45 lines
968 B
PHP
45 lines
968 B
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()
|
|
{
|
|
return view('nomination_ensembles.scobda.admin.index');
|
|
}
|
|
|
|
public function show(NominationEnsembleEntry $entry)
|
|
{
|
|
// TODO: Implement show() method.
|
|
}
|
|
|
|
public function create()
|
|
{
|
|
// TODO: Implement create() method.
|
|
}
|
|
|
|
public function store()
|
|
{
|
|
// TODO: Implement store() method.
|
|
}
|
|
|
|
public function edit(NominationEnsembleEntry $entry)
|
|
{
|
|
// TODO: Implement edit() method.
|
|
}
|
|
|
|
public function update(NominationEnsembleEntry $entry)
|
|
{
|
|
// TODO: Implement update() method.
|
|
}
|
|
|
|
public function destroy(NominationEnsembleEntry $entry)
|
|
{
|
|
// TODO: Implement destroy() method.
|
|
}
|
|
}
|