Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. {{ Form::open(array('style' => 'display: inline-block;', 'method' => 'GET', 'route' => array('comentarios.search'))) }}
  2. {{Form::label('pesquisa', 'Pesquisar palavra:')}}
  3. {{Form::text('pesquisa')}}
  4. {{Form::submit('OK')}}
  5. {{ Form::close() }}
  6.  
  7. Route::get('comentarios', array('as' => 'comentarios.search', 'uses' => 'ComentariosController@comentariosPesquisados'));
  8.  
  9. public function comentariosPesquisados()
  10. {
  11. $pesquisa = Input::get('pesquisa');
  12. $comentarios = Comentario::where('mensagem','like',"%$pesquisa%")->get();
  13. return View::make('comentarios.index', compact('comentarios'));
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement