2 lines
193 B
PHP
2 lines
193 B
PHP
<?php require 'vendor/autoload.php'; $app = require_once 'bootstrap/app.php'; $app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap(); dump(App\Models\Household::all()->toArray());
|