D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
school.dentostock.com
/
database
/
factories
/
Filename :
SmBackgroundSettingFactory.php
back
Copy
<?php namespace Database\Factories; use App\Models\Model; use App\SmBackgroundSetting; use Illuminate\Database\Eloquent\Factories\Factory; class SmBackgroundSettingFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = SmBackgroundSetting::class; /** * Define the model's default state. * * @return array */ public function definition() { return [ 'title' => 'Dashboard Background', 'type' => 'image', 'image' => 'public/backEnd/img/body-bg.jpg', 'color' => '', 'is_default' => 1, ]; } }