Hi,
EDIT: when posting, it transforms the entities "& gt ;" (without spaces) and so on. I therefore see the "raw" html as text in the browser.
I'm trying out 4.3. I've added Form class, and it ALMOST works. Though, it outputs <form method="POST"
and so on - just like if had used triple braces within blade.
Here's my template file (layout/base.blade.php):
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
</head>
<body>
@yield('content')
</body>
</html>
And my view:
@extends('layout.base')
@section('content')
{{ Form::open() }}
{{ Form::text('test-field') }}
{{ Form::close() }}
@stop
Am I missing something obvious? I've tried adding other normal HTML elements such as <h1> and it does work as expected. I've also tried removing blade in the filename.
Ok. Let me know if you find a solution (i will ofc do the same).
Hey, i have this problem to. Laravel has changed the behavior of the double curly bracket. See this Commit: https://github.com/laravel/framework/commit/833d90073da404df4b5b94c182f931b5c239fa10
Workaround should be this: https://github.com/laravel/framework/commit/b7611b142e7d76658d2e1e5d14714f31e86136a6
But this works for me neither.
Hope there will be an fix soon.
The best solution is to adjust your views to use the new style of raw Blade tag:
{!! Form::open() !!}
There was a important change 1 or 2 days ago in Blade. Now both {{ }} and {{{ }}} are escaped by default. To render raw code use {!! !!}} like:
{!! Form::open() !!}
Taylor has given some information about the changes here:
https://laracasts.com/discuss/channels/general-discussion/new-blade-tag-for-unescaped-data-thoughts
You change change the settings back to use {{ }} with this if wanted:
Blade::setEchoFormat('%s');
Where do we put that statement? In every view? controller calling the view? Base controller construct method for a global effect?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community