PHP code example of dev-lnk / moonshine-builder

1. Go to this page and download the library: Download dev-lnk/moonshine-builder 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/ */

    

dev-lnk / moonshine-builder example snippets


return [
     // Directory where schematic files in json, yaml, etc. are stored.
    'builds_dir' => base_path('builds'),

    // Notification of duplicate files of models and resources with a new generation.
    'is_confirm_replace_files' => true,

    // Ask about adding a new resource to the provider.
    'is_confirm_change_provider' => false,

    // Ask about adding a new resource to the menu.
    'is_confirm_change_menu' => false,
];

public function indexFields(): iterable
{
    return [
        ID::make('id'),
        Text::make('name', 'name'),
        Text::make('email', 'email'),
        Date::make('email_verified_at', 'email_verified_at'),
        Text::make('password', 'password'),
        Text::make('remember_token', 'remember_token'),
    ];
}

public function formFields(): iterable
{
    return [
        Box::make([
            ...$this->indexFields()
        ])
    ];
}

public function detailFields(): iterable
{
    return [
        ...$this->indexFields()
    ];
}

public function indexFields(): iterable
{
    return [
        ID::make('id'),
        Text::make('Name', 'name'),
    ];
}
shell
php artisan vendor:publish --tag=moonshine-builder

php artisan moonshine:build
shell
php artisan moonshine:build users --type=table
shell
php artisan moonshine:build category.json
shell
php artisan moonshine:project-schema