PHP code example of vaened / laravel-structer

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

    

vaened / laravel-structer example snippets


class PersonStruct extends Structurable
{
    #[Property(column: 'id')]
    protected int $ID;

    #[Property(column: 'first_name')]
    protected string $firstName;

    #[Property(column: 'last_name')]
    protected string $lastName;

    #[Property(column: 'phone_number')]
    protected ?string $phoneNumber;

    #[Property(column: 'country_id', references: 'countries')]
    protected ?string $countryID;

    #[Property(column: 'sex')]
    protected ?Sex     $sex;

    #[Property(column: 'birth_date')]
    protected ?Carbon  $birthDate;

    #[Property]
    protected Document $document;
}