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;
|
2020-01-08 01:34:48 +08:00
|
|
|
use Cache;
|
2019-12-12 13:45:46 +08:00
|
|
|
|
|
|
|
class NoticeController extends Controller
|
|
|
|
{
|
2019-12-23 16:02:56 +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
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function save (NoticeSave $request) {
|
|
|
|
$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
|
|
|
|
|
|
|
public function drop (Request $request) {
|
|
|
|
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
|
|
|
}
|