PHP code example of villca / devtools

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

    

villca / devtools example snippets




namespace App\Http\Controllers;

use Illuminate\Http\Request;

use DevTools;

class HomeController extends Controller
{
    public function index()
    {
        echo 'La Paz, ' . DevTools::fecha_texto(); //La Paz, 15 de Marzo de 2018
        
    }
}