10 lines
269 B
PHP
10 lines
269 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Contracts\Console\Kernel;
|
|
|
|
require 'vendor/autoload.php';
|
|
$app = require_once 'bootstrap/app.php';
|
|
$app->make(Kernel::class)->bootstrap();
|
|
dump(User::where('first_name', 'Juan')->get(['id', 'email', 'tenant_id'])->toArray());
|