49 lines
1.0 KiB
PHP
49 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Mapel;
|
|
use Illuminate\Http\Request;
|
|
|
|
class MapelController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*/
|
|
public function index()
|
|
{
|
|
$mapel = Mapel::all();
|
|
return view('mapel.index', compact('mapel'));
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
Mapel::create($request->all());
|
|
|
|
return redirect()->back()->with('success', 'Data mapel berhasil ditambahkan.');
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*/
|
|
public function update(Request $request, Mapel $mapel)
|
|
{
|
|
$mapel->update($request->all());
|
|
|
|
return redirect()->back()->with('success', 'Data mapel berhasil diperbarui.');
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*/
|
|
public function destroy(Mapel $mapel)
|
|
{
|
|
$mapel->delete();
|
|
|
|
return redirect()->back()->with('success', 'Data mapel berhasil dihapus.');
|
|
}
|
|
}
|