PHP code example of dev1437 / model-parser

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

    

dev1437 / model-parser example snippets


use App\Models\User;
use Dev1437\ModelParser\ModelParser;

$parser = new ModelParser(User::class);

$modelInfo = $parser->parse();
// Remove hidden fields e.g. password from output
$parser = new ModelParser(User::class, true);

$modelInfo = $parser->parse();
// Remove specific field e.g. email_verified_at from output
$parser = new ModelParser(User::class, false, [
    'email_verified_at'
]);

$modelInfo = $parser->parse();