add landing pages for meetups

This commit is contained in:
Benjamin Takats
2023-01-14 20:35:54 +01:00
parent 8120b13bff
commit 2f00e34e10
55 changed files with 3161 additions and 17 deletions

View File

@@ -0,0 +1,35 @@
<?php
namespace App\Console\Commands\Database;
use App\Models\Meetup;
use Illuminate\Console\Command;
class MigrateMeetupSlugs extends Command
{
/**
* The name and signature of the console command.
* @var string
*/
protected $signature = 'meetups:slugs';
/**
* The console command description.
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
* @return int
*/
public function handle()
{
foreach (Meetup::all() as $item) {
$item->slug = str($item->name)->slug('-', 'de');
$item->save();
}
return Command::SUCCESS;
}
}