laravel-learn-bbs/app/Http/Controllers/TopicsController.php

58 lines
1.4 KiB
PHP
Raw Normal View History

2018-01-01 04:00:45 +00:00
<?php
namespace App\Http\Controllers;
use App\Http\Requests\TopicRequest;
use App\Models\Topic;
class TopicsController extends Controller
{
public function __construct()
{
$this->middleware('auth', ['except' => ['index', 'show']]);
}
public function index()
{
$topics = Topic::paginate();
return view('topics.index', compact('topics'));
}
public function show(Topic $topic)
{
return view('topics.show', compact('topic'));
}
public function create(Topic $topic)
{
return view('topics.create_and_edit', compact('topic'));
}
public function store(TopicRequest $request)
{
$topic = Topic::create($request->all());
return redirect()->route('topics.show', $topic->id)->with('message', 'Created successfully.');
}
public function edit(Topic $topic)
{
$this->authorize('update', $topic);
return view('topics.create_and_edit', compact('topic'));
}
public function update(TopicRequest $request, Topic $topic)
{
$this->authorize('update', $topic);
$topic->update($request->all());
return redirect()->route('topics.show', $topic->id)->with('message', 'Updated successfully.');
}
public function destroy(Topic $topic)
{
$this->authorize('destroy', $topic);
$topic->delete();
return redirect()->route('topics.index')->with('message', 'Deleted successfully.');
}
}