本文整理汇总了PHP中app\Post::wherePermalink方法的典型用法代码示例。如果您正苦于以下问题:PHP Post::wherePermalink方法的具体用法?PHP Post::wherePermalink怎么用?PHP Post::wherePermalink使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Post
的用法示例。
在下文中一共展示了Post::wherePermalink方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: createNewPost
public function createNewPost(Request $request)
{
$data = ["title" => $request->title, "link" => $request->link, "body" => $request->body, "body_html" => Markdown::convertToHtml($request->body), "user_id" => Auth::user()->id, "subreddit_id" => $request->subreddit_id];
$slugify = new Slugify();
$data['slug'] = $slugify->slugify($request->get('title'), '_');
if (strlen($data['slug']) > 46) {
$data['slug'] = substr($data['slug'], 0, 46);
}
//6 character string for a permalink
$permalink = $this->generateRandomString();
//Make sure the permalink is unique
while (Post::wherePermalink($permalink)->exists()) {
$permalink = $this->generateRandomString();
}
$data['permalink'] = $permalink;
Post::create($data);
return redirect('/r/' . Subreddit::whereId($request->subreddit_id)->firstOrFail()->name . '/comments/' . $data['permalink'] . '/' . $data['slug']);
}
示例2: getPermalink
public function getPermalink($permalink)
{
$post = Post::wherePermalink($permalink)->firstOrFail();
return redirect('/d/' . $post->subdoot->name . '/' . $post->permalink . '/' . $post->slug);
}