MIF_E31222596/website/app/Http/Controllers/KelasController.php

75 lines
1.7 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Models\Kelas;
use Illuminate\Http\Request;
use App\Http\Requests\StoreKelasRequest;
use App\Http\Requests\UpdateKelasRequest;
use App\Models\Guru;
class KelasController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
$kelas = Kelas::with('waliKelas')->get();
return view('kelas.index', compact('kelas'));
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
$gurus = Guru::all();
return view('kelas.create', compact('gurus'));
}
/**
* Store a newly created resource in storage.
*/
public function store(StoreKelasRequest $request)
{
Kelas::create($request->validated());
return redirect()->route('kelas.index')->with('success', 'Kelas berhasil ditambahkan');
}
/**
* Display the specified resource.
*/
public function show(Kelas $kelas)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(Kelas $kela)
{
$gurus = Guru::all();
return view('kelas.edit', ['kela' => $kela, 'gurus' => $gurus]);
}
/**
* Update the specified resource in storage.
*/
public function update(UpdateKelasRequest $request, Kelas $kela)
{
$kela->update($request->validated());
return redirect()->route('kelas.index')->with('success', 'Kelas berhasil diupdate');
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Kelas $kela)
{
$kela->delete();
return redirect()->route('kelas.index')->with('success', 'Kelas berhasil dihapus');
}
}