Files
lions-vote-backend/app/Http/Controllers/IndexController.php
2022-05-04 15:41:02 +08:00

23 lines
320 B
PHP

<?php
namespace App\Http\Controllers;
use App\Models\Vote;
class IndexController extends Controller
{
function index()
{
$list = Vote::all();
return view('index.index', compact('list'));
}
function vote(Vote $vote)
{
return view('index.vote', compact('vote'));
}
}