Company logo
  • Jobs
  • Bootcamp
  • About Us
  • For professionals
    • Home
    • Jobs
    • Courses
    • Questions
    • Teachers
    • Bootcamp
  • For business
    • Home
    • Our process
    • Plans
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Calculator

0

143
Views
Laravel Backpack setting value on a field
$this->crud->addField([
        'label' => "Department",
        'type' => 'select_multiple',
        'name' => 'departments',
         // the method that defines the relationship in your Model
        'entity' => 'departments', // the method that defines the relationship in your Model
        'attribute' => 'department_name', // foreign key attribute that is shown to user
        'model' => "App\Models\DepartmentNames", // foreign key model
        'pivot' => true, // on create&update, do you need to add/delete pivot table entries?
    ]);

When I post the array 'department' is empty,

<select class="form-control" name="department[]" multiple="">
    <option value="">-</option>
    <option value="">Account Management</option>
    <option value="">Services</option>
    <option value="">Customers</option>
   <option value="">Technical</option>
</select>

The schema for departmentNames

- id
-department_name
8 months ago ยท Santiago Trujillo
Answer question
Find remote jobs