本文整理汇总了PHP中app\Topic::destroy方法的典型用法代码示例。如果您正苦于以下问题:PHP Topic::destroy方法的具体用法?PHP Topic::destroy怎么用?PHP Topic::destroy使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Topic
的用法示例。
在下文中一共展示了Topic::destroy方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: deleteTopic
public function deleteTopic()
{
Input::merge(array_map('trim', Input::all()));
$id = (int) Input::get('id');
$topic = Topic::where('parent', $id);
if (!$topic->exists()) {
Topic::destroy($id);
}
return 1;
}
示例2: destroy
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return Response
*/
public function destroy($id)
{
Topic::destroy((int) $id);
return back();
}
示例3: destroy
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return Response
*/
public function destroy($id)
{
Topic::destroy($id);
\Session::flash('success', 'Topic is deleted.');
return redirect('topics');
}
示例4: delete
/**
* Delete a topic
*
* @return \Illuminate\Redirect
*/
public function delete($id)
{
Topic::destroy($id);
return redirect('/');
}
示例5: destroy
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy(Request $request)
{
Post::where('topic_id', '=', $request->topic_id)->delete();
Topic::destroy($request->topic_id);
return Redirect::action('TopicController@index');
}