PHP code example of robertogallea / laravel-ui-faces
1. Go to this page and download the library: Download robertogallea/laravel-ui-faces 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/ */
robertogallea / laravel-ui-faces example snippets
public function show(UIFaces $uifaces)
{
$faces = $uifaces
->limit(10)
->from_age(18)
->to_age(22)
->getFaces();
}