I am curious between the difference between {!! !!} and {{ }}
In laravel, Model-View-Controller it is used in View where the user declare the variables which was sent from the Controller
Example Given:
**In Controller**
public function show(){
$somevariable = 'What is the difference';
return view('someView.page')->with('somevariable', $somevariable)
}
**In View**
<span class="label label-default">{!! $somevariable !!}</span>
<span class="label label-default">{{ $somevariable }}</span>
Both works but I wanna know if there's significant changes it does and what is their differences.