1, 'title' => 'Manager'], ['restaurant_id' => 1, 'title' => 'Chef'], ['restaurant_id' => 1, 'title' => 'Waiter'], ['restaurant_id' => 1, 'title' => 'Accountant'], ['restaurant_id' => 1, 'title' => 'HR Executive'], ]; foreach ($designations as $designation) { Designation::updateOrCreate(['title' => $designation['title']], $designation); } } }