<?php

use Illuminate\Database\Seeder;

class MenuFakeSub extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        \App\MenuSlider::truncate();
        $list = \App\Menu::all();
        foreach ($list as $item) {
            if ($item->parent_id > 0) {
                \App\MenuSlider::create([
                    'menu_id'     => $item->id,
                    'image'       => 'https://uramori.jp/column/wp-content/uploads/2020/08/PI8Cqd5V.jpeg',
                    'title'       => '電話占いヴェルニ 紫水（シスイ ）先生【当たる電話占い完全ガイド】おすすめ占い師・鑑定士 ' . rand(2222, 444),
                    'description' => '2020年8月20日',
                    'link'        => 'https://uramori.jp/column/choose-fortune-telling/phone-fortune-telling/phone-fortune-telling-phone-fortune-telling-vernis-shisui/'
                ]);
                \App\MenuSlider::create([
                    'menu_id'     => $item->id,
                    'image'       => 'https://uramori.jp/column/wp-content/uploads/2020/08/PI8Cqd5V.jpeg',
                    'title'       => '鑑定士' . rand(2222, 444),
                    'description' => '2020年8月20日',
                    'link'        => 'https://uramori.jp/column/choose-fortune-telling/phone-fortune-telling/phone-fortune-telling-phone-fortune-telling-vernis-shisui/'
                ]);
            }
        }
    }
}
