<?php

use Illuminate\Database\Seeder;
use App\SeoFormat;

class UpdateSeoFormat extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        $seoFormat = [
            'area'    => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
            'method'  => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
            'consultation'  => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
            'name'  => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
            'fortune' => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
        ];

        SeoFormat::truncate();
        foreach ($seoFormat as $type => $item) {
            SeoFormat::create([
                'type'        => $type,
                'title'       => $item['title'],
                'keywords'    => $item['keywords'],
                'description' => $item['description'],
                'created_at'  => date('Y-m-d H:i:s'),
                'updated_at'  => date('Y-m-d H:i:s')
            ]);
            print "Update SEO format: " . $type . " " . $item['title'] . "\r\n";
        }
    }
}
