Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samiulislamsharan/laravel-blade-cheat-sheet
Blade is a powerful templating engine provided with Laravel for working with PHP and HTML. It provides various directives to make your views more expressive and concise.
https://github.com/samiulislamsharan/laravel-blade-cheat-sheet
blade-template cheat-sheet cheatsheet laravel laravel-framework
Last synced: 11 days ago
JSON representation
Blade is a powerful templating engine provided with Laravel for working with PHP and HTML. It provides various directives to make your views more expressive and concise.
- Host: GitHub
- URL: https://github.com/samiulislamsharan/laravel-blade-cheat-sheet
- Owner: samiulislamsharan
- License: mit
- Created: 2024-03-17T08:58:00.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-18T12:07:32.000Z (8 months ago)
- Last Synced: 2024-03-19T11:25:44.545Z (8 months ago)
- Topics: blade-template, cheat-sheet, cheatsheet, laravel, laravel-framework
- Homepage:
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Blade Cheat Sheet
Blade is a powerful templating engine provided with Laravel for working with PHP and HTML. It provides various directives to make your views more expressive and concise.
## Table of Contents
- [Laravel Blade Cheat Sheet](#laravel-blade-cheat-sheet)
- [Table of Contents](#table-of-contents)
- [Extending Layouts](#extending-layouts)
- [@extends](#extends)
- [@section](#section)
- [@yield](#yield)
- [@parent](#parent)
- [Including Sub-Views](#including-sub-views)
- [@include](#include)
- [Control Structures](#control-structures)
- [@if](#if)
- [@empty](#empty)
- [Looping Structures](#looping-structures)
- [@foreach](#foreach)
- [@for](#for)
- [@forelse](#forelse)
- [@while](#while)
- [Outputting Data](#outputting-data)
- [The `{{}}` Directive](#the--directive)
- [The `{{!! !!}}` Directive](#the---directive)
- [Comments](#comments)
- [Authentication Directives](#authentication-directives)
- [@auth](#auth)
- [@guest](#guest)
- [Authorization Directives](#authorization-directives)
- [@can](#can)
- [@cannot](#cannot)
- [@canany](#canany)
- [Environment Directives](#environment-directives)
- [@env](#env)
- [@production](#production)## Extending Layouts
### @extends
The `@extends` directive is used to inherit a layout.
```php
@extends('layout.name')
```### @section
The `@section` directive defines a section that can be overwritten in child views.
```php
@section('sectionName')
// content of the section
@endsection
```### @yield
The `@yield` directive is used to output the contents of a section.
```php
@yield('sectionName')
```### @parent
The `@parent` directive is used to display the content of the parent section.
```php
@section('sectionName')
@parent
// additional content
@endsection
```## Including Sub-Views
### @include
The `@include` directive is used to include a sub-view.
```php
@include('view.name')
```## Control Structures
### @if
The `@if` directive is used for conditional statements.
```php
@if($condition)
// code to execute if condition is true
@elseif($anotherCondition)
// code to execute if another condition is true
@else
// code to execute if none of the conditions are true
@endif
```### @empty
The `@empty` directive checks if a variable is empty.
```php
@empty($variable)
// code to execute if the variable is empty
@endempty
```## Looping Structures
### @foreach
The `@foreach` directive is used to iterate over arrays or objects.
```php
@foreach($items as $item)
// code to execute for each item
@endforeach
```### @for
The `@for` directive is used for simple loop iterations.
```php
@for($i = 0; $i < 5; $i++)
// code to execute for each iteration
@endfor
```### @forelse
The `@forelse` directive is used to display a list of items with an optional message if the list is empty.
```php
@forelse($items as $item)
// code to execute for each item
@empty
// code to execute if the list is empty
@endforelse
```### @while
The `@while` directive is used for indefinite loop iterations.
```php
@while($condition)
// code to execute while the condition is true
@endwhile
```## Outputting Data
### The `{{}}` Directive
The `{{ }}` directive is used to echo the contents of a variable.
```php
{{ $variable }}
```### The `{{!! !!}}` Directive
The `{!! !!}` directive outputs the contents without escaping HTML entities.
```php
{!! $htmlContent !!}
```## Comments
The `{{-- --}}` directive is used to add comments in Blade templates.
```php
{{-- This is a blade comment --}}
```## Authentication Directives
### @auth
The `@auth` directive checks if the user is authenticated.
```php
@auth
// code to execute if the user is authenticated
@endauth
```### @guest
The `@guest` directive checks if the user is a guest.
```php
@guest
// code to execute if the user is a guest
@endguest
```## Authorization Directives
### @can
The `@can` directive checks if the user has a certain permission.
```php
@can('permissionName')
// code to execute if the user has the permission
@endcan
```### @cannot
The `@cannot` directive checks if the user does not have a certain permission.
```php
@cannot('permissionName')
// code to execute if the user does not have the permission
@endcannot
```### @canany
The `@canany` directive checks if the user has any of the given permissions.
```php
@canany(['permission1', 'permission2', ... , 'permissionN'])
// code to execute if the user has any of the given permissions
@endcanany```
## Environment Directives
### @env
The `@env` directive checks the application environment.
```php
@env('local')
// code to execute if the application is in the local environment
@endenv
```### @production
The `@production` directive checks if the application is in production environment.
```php
@production
// code to execute if the application is in production environment
@endproduction
```These are the commonly used Blade directives in Laravel for templating and controlling the presentation logic of your views.