Skip to content

Commit

Permalink
تعديل1
Browse files Browse the repository at this point in the history
  • Loading branch information
hmdee committed Nov 30, 2024
1 parent 2f9c967 commit 45d245f
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions app/Http/Requests/StoreItemRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,12 @@ public function authorize()
*
* @return array<string, mixed>
*/

public function rules()
{
return [

'name' => [
'required',
],
'description ' => [
'required',
],

'name' => 'required',
'description' => 'required'
];
}
}

0 comments on commit 45d245f

Please sign in to comment.