mirror of https://github.com/4xmen/xshop.git
Compare commits
3 Commits
2a7714845b
...
f5a2f3dc67
Author | SHA1 | Date |
---|---|---|
A1Gard | f5a2f3dc67 | 3 weeks ago |
A1Gard | 58962bf448 | 3 weeks ago |
A1Gard | 62028c6f99 | 3 weeks ago |
@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
|
||||||
|
class SeedImageAll extends Command
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
public $models = ['Category', 'Group', 'Slider', 'Post', 'Product'];
|
||||||
|
/**
|
||||||
|
* The name and signature of the console command.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $signature = 'seeding:all {directory}';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The console command description.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'Command description';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute the console command.
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
foreach ($this->models as $model) {
|
||||||
|
// Call the seeder command
|
||||||
|
$exitCode = \Artisan::call('seeding:image', ['directory' => $this->argument('directory'), 'model' => $model]);
|
||||||
|
|
||||||
|
// Get the output
|
||||||
|
$output = \Artisan::output();
|
||||||
|
|
||||||
|
// Handle the exit code and output as needed
|
||||||
|
if ($exitCode === 0) {
|
||||||
|
$this->info( "Seeding was successful: [$model] \n");
|
||||||
|
} else {
|
||||||
|
$this->error("Seeding failed with exit code {$exitCode}:\n");
|
||||||
|
}
|
||||||
|
$this->info( $output);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue