PHP code example of phl / laravel-sti

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

    

phl / laravel-sti example snippets


class Member extends Illuminate\Database\Eloquent\Model
{
    use PHL\LaravelSTI\STI;
}

Schema::create('members', function ($table) {
    // ...
    $table->type();
    // ...
});

class PremiumMember extends Member
{
    //
}

class RegularMember extends Member
{
    //
}

class Member extends Illuminate\Database\Eloquent\Model
{
    use PHL\LaravelSTI\STI;

    protected static $stiTypeKey = 'custom_type_column'
}

Capsule::schema()->create('members', function ($table) {
    // ...
    $table->type('custom_type_column');
    // ...
});

Relation::morphMap([
    'regular_member' => RegularMember::class,
]);