PHP code example of fumeapp / modeltyper

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

    

fumeapp / modeltyper example snippets


public function providers(): HasMany // <- this
{
    return $this->hasMany(Provider::class);
}

protected function firstName(): Attribute
{
    return Attribute::make(
        get: fn (string $value): string => ucfirst($value), // <- this
    );
}

public array $interfaces = [
    'coordinate' => [
        'import' => "@/types/api",
        'type' => 'Point',
    ],
];

public array $interfaces = [
    'choices' => [
        'import' => '@/types/api',
        'type' => 'ChoicesWithPivot',
        'nullable' => true,
    ],
];

public array $interfaces = [
    'choices' => [
        'type' => "'good' | 'bad'",
    ],
];

    public array $interfaces = [
        'state' => [
            'type' => "found' | 'not_found' | 'searching' | 'reset'",
        ],
    ];

'custom_mappings' => [
    'App\Casts\YourCustomCast' => 'string | null',
    'binary' => 'Blob',
    'bool' => 'boolean',
    'point' => 'CustomPointInterface',
    'year' => 'string',
],



namespace App\Enums;

/**
 * @property ADMIN - Can do anything
 * @property USER - Standard read-only
 */
enum UserRoleEnum: string
{
    case ADMIN = 'admin';
    case USER = 'user';
}

protected $casts = [
    'role' => App\Enums\UserRoleEnum::class,
];
bash
php artisan vendor:publish --provider="FumeApp\ModelTyper\ModelTyperServiceProvider" --tag=config
bash
php artisan model:typer
bash
> php artisan model:typer-mappings
> 
ts
export interface Location {
    // columns
    choices: "good" | "bad";
}
bash
artisan model:typer --global