96 lines
2.9 KiB
PHP
96 lines
2.9 KiB
PHP
<?php
|
||
|
||
namespace App\Http\Controllers\Admin;
|
||
|
||
use App\Information;
|
||
use Illuminate\Http\Request;
|
||
use App\Http\Controllers\Controller;
|
||
use Illuminate\Support\Facades\Validator;
|
||
use Illuminate\Validation\Rule;
|
||
|
||
class InfoController extends Controller
|
||
{
|
||
public function index()
|
||
{
|
||
$informations = Information::query()
|
||
->select('id', 'category', 'pinned', 'title', 'created_at')
|
||
->orderByDesc('pinned')
|
||
->orderByDesc('created_at')
|
||
->paginate(20);
|
||
|
||
return view('admin.info.index')->with([
|
||
'informations' => $informations,
|
||
'categories' => Information::CATEGORIES
|
||
]);
|
||
}
|
||
|
||
public function create()
|
||
{
|
||
return view('admin.info.create')->with([
|
||
'categories' => Information::CATEGORIES
|
||
]);
|
||
}
|
||
|
||
public function store(Request $request)
|
||
{
|
||
$inputs = $request->all();
|
||
if ($request->has('content')) {
|
||
$inputs['content'] = str_replace(["\r\n", "\r"], "\n", $inputs['content']);
|
||
}
|
||
if (!$request->has('pinned')) {
|
||
$inputs['pinned'] = false;
|
||
}
|
||
|
||
// TODO: #updateと全く同じだし、フォームリクエストにしたほうがよいのでは?
|
||
Validator::make($inputs, [
|
||
'category' => ['required', Rule::in(array_keys(Information::CATEGORIES))],
|
||
'pinned' => 'nullable|boolean',
|
||
'title' => 'required|string|max:255',
|
||
'content' => 'required|string|max:10000'
|
||
])->validate();
|
||
|
||
$info = Information::create($inputs);
|
||
|
||
return redirect()->route('admin.info.edit', ['info' => $info])->with('status', 'お知らせを更新しました。');
|
||
}
|
||
|
||
public function edit($id)
|
||
{
|
||
$information = Information::findOrFail($id);
|
||
|
||
return view('admin.info.edit')->with([
|
||
'info' => $information,
|
||
'categories' => Information::CATEGORIES
|
||
]);
|
||
}
|
||
|
||
public function update(Request $request, Information $info)
|
||
{
|
||
$inputs = $request->all();
|
||
if ($request->has('content')) {
|
||
$inputs['content'] = str_replace(["\r\n", "\r"], "\n", $inputs['content']);
|
||
}
|
||
if (!$request->has('pinned')) {
|
||
$inputs['pinned'] = false;
|
||
}
|
||
|
||
Validator::make($inputs, [
|
||
'category' => ['required', Rule::in(array_keys(Information::CATEGORIES))],
|
||
'pinned' => 'nullable|boolean',
|
||
'title' => 'required|string|max:255',
|
||
'content' => 'required|string|max:10000'
|
||
])->validate();
|
||
|
||
$info->fill($inputs)->save();
|
||
|
||
return redirect()->route('admin.info.edit', ['info' => $info])->with('status', 'お知らせを更新しました。');
|
||
}
|
||
|
||
public function destroy(Information $info)
|
||
{
|
||
$info->delete();
|
||
|
||
return redirect()->route('admin.info')->with('status', 'お知らせを削除しました。');
|
||
}
|
||
}
|