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

72 lines
1.9 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Models\MataPelajaran;
use Illuminate\Http\Request;
use App\Http\Requests\StoreMataPelajaranRequest;
use App\Http\Requests\UpdateMataPelajaranRequest;
class MataPelajaranController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
$mataPelajarans = MataPelajaran::all();
return view('mata_pelajarans.index', compact('mataPelajarans'));
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
return view('mata_pelajarans.create');
}
/**
* Store a newly created resource in storage.
*/
public function store(StoreMataPelajaranRequest $request)
{
MataPelajaran::create($request->validated());
return redirect()->route('mata_pelajarans.index')->with('success', 'Mata pelajaran berhasil ditambahkan');
}
/**
* Display the specified resource.
*/
public function show(MataPelajaran $mataPelajaran)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(MataPelajaran $mataPelajaran)
{
return view('mata_pelajarans.edit', compact('mataPelajaran'));
}
/**
* Update the specified resource in storage.
*/
public function update(UpdateMataPelajaranRequest $request, MataPelajaran $mataPelajaran)
{
$mataPelajaran->update($request->validated());
return redirect()->route('mata_pelajarans.index')->with('success', 'Mata pelajaran berhasil diupdate');
}
/**
* Remove the specified resource from storage.
*/
public function destroy(MataPelajaran $mataPelajaran)
{
$mataPelajaran->delete();
return redirect()->route('mata_pelajarans.index')->with('success', 'Mata pelajaran berhasil dihapus');
}
}