You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
2.4 KiB
PHTML

5 years ago
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\Periode;
class PeriodeController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$periode = Periode::orderBy('created_at','desc')->paginate(5);
return view('periode.index', ['periode' => $periode]);
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
return view('periode.form');
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
$request->validate([
'nama' => 'required|max:255',
'tgl_mulai' => 'required|date|before:'.$request->tgl_selesai,
'tgl_selesai' => 'required|date',
'is_active' => 'nullable|boolean',
]);
5 years ago
$periode = Periode::make($request->input());
5 years ago
5 years ago
if($request->is_active == null){
$periode->is_active = 0;
}
if(!$periode->save()){
5 years ago
return redirect()->route('periode.index')->with([
'type' => 'success',
'msg' => 'Periode baru ditambahkan'
]);
}else{
return redirect()->route('periode.index')->with([
'type' => 'danger',
'msg' => 'Err.., Terjadi Kesalahan'
]);
5 years ago
}
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//
}
}