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.
85 lines
1.8 KiB
PHP
85 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Post;
|
|
use App\PostCollection;
|
|
use Illuminate\Http\Request;
|
|
|
|
class PostController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @param integer $thread_id
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function index(Thread $thread)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new resource.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function create(Thread $thread)
|
|
{
|
|
return view("create_post")->withThread($thread);
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param \App\Post $post
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit(Post $post)
|
|
{
|
|
return view("edit_post")->withPost($post);
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
$post = new Post;
|
|
|
|
$post->poster_id = $request->user_id;
|
|
$post->content = $request->content;
|
|
$post->thread_id = $request->thread_id;
|
|
|
|
$post->save();
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \App\Post $post
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(Request $request, Post $post)
|
|
{
|
|
$post->content = $request->content;
|
|
|
|
$post->save();
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param \App\Post $post
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy(Post $post)
|
|
{
|
|
$post->delete();
|
|
}
|
|
}
|