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
);
}
namespace App\Enums;
/**
* @property ADMIN - Can do anything
* @property USER - Standard read-only
*/
enum UserRoleEnum: string
{
case ADMIN = 'admin';
case USER = 'user';
}