13 lines
322 B
PHP
13 lines
322 B
PHP
<?php
|
|
require 'vendor/autoload.php';
|
|
$app = require_once 'bootstrap/app.php';
|
|
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
|
|
$kernel->bootstrap();
|
|
|
|
$doc = \App\Models\WorkerDocument::where('number', 'P666382')->first();
|
|
if ($doc) {
|
|
print_r($doc->getAttributes());
|
|
} else {
|
|
echo "NOT FOUND\n";
|
|
}
|