v2board/app/Http/Controllers/Admin/NoticeController.php

58 lines
1.3 KiB
PHP
Raw Normal View History

2019-12-12 13:45:46 +08:00
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Requests\Admin\NoticeSave;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use App\Models\Notice;
use Cache;
2019-12-12 13:45:46 +08:00
class NoticeController extends Controller
{
2020-01-11 13:36:52 +08:00
public function fetch(Request $request)
{
2019-12-12 13:45:46 +08:00
return response([
2019-12-12 14:39:26 +08:00
'data' => Notice::orderBy('id', 'DESC')->get()
2019-12-12 13:45:46 +08:00
]);
}
2020-01-11 13:36:52 +08:00
public function save(NoticeSave $request)
{
2019-12-12 13:45:46 +08:00
$data = $request->only([
'title',
2019-12-12 16:29:35 +08:00
'content',
'img_url'
2019-12-12 13:45:46 +08:00
]);
2020-01-02 00:43:25 +08:00
if (!$request->input('id')) {
if (!Notice::create($data)) {
abort(500, '保存失败');
}
} else {
if (!Notice::find($request->input('id'))->update($data)) {
abort(500, '保存失败');
}
2019-12-12 14:34:28 +08:00
}
return response([
'data' => true
]);
}
2019-12-12 14:41:27 +08:00
2020-01-11 13:36:52 +08:00
public function drop(Request $request)
{
2019-12-12 14:41:27 +08:00
if (empty($request->input('id'))) {
abort(500, '参数错误');
}
$notice = Notice::find($request->input('id'));
if (!$notice) {
abort(500, '公告不存在');
}
2019-12-12 14:43:21 +08:00
if (!$notice->delete()) {
2019-12-12 14:41:27 +08:00
abort(500, '删除失败');
}
return response([
'data' => true
]);
}
2019-12-12 13:45:46 +08:00
}