PHP code example of goszowski / blade-extended

1. Go to this page and download the library: Download goszowski/blade-extended 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/ */

    

goszowski / blade-extended example snippets

html
 <ul>
 	<li bd-foreach="$items as $item" bd-if="$item->name !== '_dev'">
 		<a href="#">{{ $item->name }}</a>
 	</li>
 </ul>
html
 <ul bd-inner-foreach="$items as $i => $item">
 	<li>{{ $i }}</li>
 	<li>{{ $item }}</li>
 </ul>