Skip to content

Commit

Permalink
Update HourRequest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
web-dev-trev authored and nikhiltri committed Nov 21, 2023
1 parent c177a20 commit 1e5d715
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Http/Requests/Admin/HourRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ public function rulesForCreate()
{
return [
'title' => 'required',
'validFrom' => 'required'
'valid_from' => 'required'
];
}

public function rulesForUpdate()
{
return [
'title' => 'required',
'validFrom' => 'required'
'valid_from' => 'required'
];
}
}

0 comments on commit 1e5d715

Please sign in to comment.