How can i check if value is passed to the view? for example
return View::make('view', array('result' => $result))->withInput(Input::flash());
how can i check in the view if $result is pass.
i already try Session::has('result') but it always gives me false..
@if(isset($result))
//your code here
@endif
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community