用laravel框架怎么实现删除
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用laravel框架怎么实现删除相关的知识,希望对你有一定的参考价值。
参考技术A 删除链接编辑在app/views/articles/index.blade.php文件,在列表视图每个文章后面,添加删除菜单:
MENU:
Form::open(array('method'
=>
'DELETE',
'route'
=>
array('articles.destroy',
$article->id)))
Form::submit('Delete')
Form::close()
执行删除
修改
ArticlesController
控制器
destroy
动作的代码:
public
function
destroy($id)
Article::destroy($id);
return
Redirect::route('articles.index');
注意,删除后,直接跳转到列表页面。
PHP框架 Laravel Eloquent ORM 批量插入数据,怎么实现
DB::table(\'users\')->insert(array(array(\'email\' => \'taylor@example.com\', \'votes\' => 0),
array(\'email\' => \'dayle@example.com\', \'votes\' => 0),
)); 参考技术A PHP框架 Lara->insert(array( array('email' => 'taylor
以上是关于用laravel框架怎么实现删除的主要内容,如果未能解决你的问题,请参考以下文章