ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/database/seeders/
Upload File :
Current File : /home2/selectio/public_html/fms-worksuite/database/seeders/NoticesTableSeeder.php

<?php

namespace Database\Seeders;

use App\Models\Notice;
use Illuminate\Database\Seeder;

class NoticesTableSeeder extends Seeder
{

    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run($companyId)
    {
        $count = config('app.seed_record_count');

        Notice::factory()
            ->count((int)$count)
            ->make()
            ->each(function (Notice $model) use ($companyId) {
                $model->company_id = $companyId;
                $model->save();
            });
    }

}

Zerion Mini Shell 1.0