<?php namespace Database\Seeders; use App\AppSection; use Illuminate\Database\Seeder; class DisableButtonEnableSection extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { $appSection = AppSection::where('name', 'Contenido club')->first(); if ($appSection) { $appSection->enable_on_home = 0; $appSection->enable_section_on_home = 1; $appSection->save(); } } }