摘要: 模型里面 <?phpnamespace App\Models;use Illuminate\Database\Eloquent\Model;class Post extends Model{ // protected $table = "posts"; public $primaryKey = 'i 阅读全文
posted @ 2019-10-16 23:44 brady-wang 阅读(1250) 评论(0) 推荐(0)
摘要: 用户模型 post模型 comment模型 阅读全文
posted @ 2019-10-16 22:55 brady-wang 阅读(286) 评论(0) 推荐(0)
摘要: post控制器public function comment(Post $post,Request $request){ try{ if(empty($request->content)){ ExceptionResult::throwException(ErrorCode::COMMENT_EMP 阅读全文
posted @ 2019-10-16 22:45 brady-wang 阅读(582) 评论(0) 推荐(0)