Skip to main content

Best Php training trivandrum Laravel 5.5.3 Released

Laravel 5.5.3 Released

The rescue() Helper

$result = rescue(function () {
    throw new Exception;
}, function () {
    return 'rescued!';
});

// => rescued!

A Route::getAction() parameter

$route->getAction()['controller'];
$route->getAction('controller');

The JSON Blade Directive

<script>
  var example = {!! $json !!};
</script>
<script>
  var example = JSON.parse("{!! $json !!}");
</script>
<script>
  var example = @json($myData);
</script>

v5.5.3 Changelog:

Added

Changed

Fixed

Removed

Comments