35 lines
663 B
PHP
35 lines
663 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
use App\Models\TestData;
|
|
|
|
class testDataCommand extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'data_base:test-data-command';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Тестовая команда';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle()
|
|
{
|
|
$testDataModel = new TestData;
|
|
$test = TestData::where('test_char', 'hellos')->get();
|
|
var_dump($test);
|
|
|
|
}
|
|
}
|