1. Go to this page and download the library: Download spkm/isams 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/ */
spkm / isams example snippets
namespace App;
use Illuminate\Database\Eloquent\Model;
class School extends Model implements \spkm\isams\Contracts\Institution
{
/**
* Define the name used to identify this Schools entry in the config
*/
public function getConfigName(): string
{
return 'cranleighSandbox';
}
}