PHP code example of kanagama / add-directives-to-larave-blade

1. Go to this page and download the library: Download kanagama/add-directives-to-larave-blade library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kanagama / add-directives-to-larave-blade example snippets


@true ($condition)
  // $condition が true の場合の処理
@endtrue

@false ($condition)
  // $condition が false の場合の処理
@endfalse

@notempty ($condition)
  // $condition が empty でない場合の処理
@endnotempty

@notisset ($condition)
  // $condition が定義されていない、または null の場合の処理
@endnotisset

@isnull ($condition)
  // $condition が null の場合の処理
@endisnull

@isnotnull ($condition)
  // $condition が null でない場合の処理
@endisnotnull

@loop ($condition)
  // $condition が 3 の場合、3回表示されます
  {{ $loop->index }}
@endloop