PHP code example of codimais / appver

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

    

codimais / appver example snippets



 
namespace App\Http\Controllers;
 
use Codimais\AppVer\AppVer;
 
class MyController extends Controller
{
    /**
     * Show something
     */
    public function show(): View
    {
        $appver = new AppVer();

        return view('my.view', [
            'app_version' => $appver->get()
        ]);
    }
}
bash
php artisan appver:init