Member Since 1 Month Ago
4,890 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
Earned once your experience points ranks in the top 10 of all Laracasts users.
Started a new Conversation Save Multiple Checkbox Inputs With Additional Data To Pivot Table
I'm trying to assign licence categories with expiry date input for each category to a user. I'm working with Laravel 8 and Bootstrap 5.
Up to assigning categories to a user I'm ok. The lack of knowledge starts with saving that expiry date to additional column in pivot table.
So here's my form section where I collect necessary information:
<div class="mb-1"><strong>Assign user's driving licence categories:</strong></div>
@foreach($categories as $category)
<div class="input-group mb-3">
<div class="input-group-text" style="width: 6ch !important;">{{$category->name}}</div>
<div class="input-group-text">
<input class="form-check-input" type="checkbox" name="categories[]" value="{{$category->id}}">
</div>
<div class="input-group-text">Expiry date</div>
<input class="form-control" type="date" name="expiry_date[]">
</div>
@endforeach
And Controller:
public function store(Request $request)
{
$request->validate([
'first_name' => 'required',
'last_name' => 'required',
'email' => 'required',
'roles' => 'required',
'categories' => 'required',
'expiry_date' => 'required_with:categories'
]);
$user = User::create($request->except(['roles', 'categories', 'expiry_date']))
->drivingLicenceCategory()->sync($request->categories);
return redirect()->route('users.index')->with('success', 'User added successfully.');
}
I have no idea how to assign expiry date to each category.
Also what if category of id = 1
is not selected?
The second array of expiry_date
is returning null
in position [0]
:(
Hope someone can help and thank you for your time spent helping me :)