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