本文整理匯總了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);
}