Well organized views and templates.
// normal php data
<?php echo $username ?>// with blade tags
{{ $username }}// ternary statement
{{ isset($title) ? $title : 'My App' }}// default value
{{ $title or 'My App' }}if
@if ($users->count() > 0)
show the users
@else
No users!
@endifforeach
@foreach ($users as $user)
The user is {{ $user->name }}
@endforeach
@extend('layouts.main')
@yield('content')@section('content')
the content goes here
@endsection
@include('partials.header')// normal php data
<?php echo $username ?>// with blade tags
{{ $username }}@stack('scripts')@push('scripts')
<script src="js/dashboard.js"></script>
@endpush