Skip to content

Commit

Permalink
Update ProjectController.php
Browse files Browse the repository at this point in the history
  • Loading branch information
OhmygoodR authored Jan 29, 2024
1 parent a2e777a commit 6724b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/ProjectController.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public function store(Request $request)
{
$request->validate([
// TASK: Write the validation rule so "logo" file would be MAX 1 megabyte
// 'logo'=>File::max(1024)
'logo'=>'max:1024'
]);

// TASK: change the below line so that $filename would contain only filename
Expand Down

0 comments on commit 6724b9a

Please sign in to comment.