PHP code example of lordoffreaks / puzzle

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

    

lordoffreaks / puzzle example snippets


return [
    'contact_email' => '[email protected]',
];

├─ source
│  ├─ _assets
│  ├─ _layouts
│  │  └─ master.blade.php
│  ├─ img
│  │  └─ logo.png
│  ├─ about-us.blade.php
│  └─ index.blade.php
└─ config.php

├─ source
│  ├─ _layouts
│  │  └─ master.blade.php # Not rendered
│  └─ index.blade.php     # Rendered
└─ config.php

├─ source
   ├─ _layouts
   ├─ about-us.blade.php
   └─ index.blade.php