1. Go to this page and download the library: Download yaroslawww/laravel-gdc-info 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/ */
yaroslawww / laravel-gdc-info example snippets
public function up() {
Schema::create( config('gdc-info.tables.gdc_info'), function ( Blueprint $table ) {
\GDCInfo\MigrationHelper::defaultColumns($table);
} );
}
namespace App\Models;
class GDCInfo extends \GDCInfo\Models\GDCInfo
{
}
public function register()
{
GDCChecker::useModel(\App\Models\GDCInfo::class);
}