PHP code example of curiousyigit / laravel-arqam
1. Go to this page and download the library: Download curiousyigit/laravel-arqam 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/ */
curiousyigit / laravel-arqam example snippets
php artisan vendor:publish --provider=curiousyigit\LaravelArqam\ServiceProvider
// Example
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Arqam;
class TestController extends Controller
{
public function something()
{
return Arqam::words('486532');
}
}