Ejemplo n.º 1
0
 public function run()
 {
     DB::table('seo')->delete();
     Seo::create(['title' => 'Welcome to the blog', 'keywords' => 'laravel, cms, blog', 'description' => 'Blogging about the web', 'og_title' => 'Welcome to the blog', 'og_description' => 'Blogging about the web']);
 }
 public function setUp()
 {
     parent::setUp();
     $this->model = Seo::first();
 }