我正在使用 Laravel 4 中的 PostsController 将帖子添加到数据库
我使用数据库中的 url 字段来确定我用于显示帖子 url 例如 url = example-url 将意味着帖子的 url 将是 example.com/example-url
我的商店功能如下所示:
public function store()
{
$input = Input::all();
$v = Validator::make($input, Post::$rules);
if($v->passes())
{
$this->post->create($input);
return Redirect::route('cms.index');
}
return Redirect::route('cms.create')
->withInput()
->withErrors($v)
->with('message', 'There were validation errors.');
}
检查输入的网址是否已存在于另一个帖子的最佳方法是什么?
谢谢!