Skip to content

Commit

Permalink
increased image size to 100MB
Browse files Browse the repository at this point in the history
  • Loading branch information
mjawad096 committed Jul 1, 2021
1 parent 4cb29ff commit 16dcf2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App/Http/Controllers/AssetController.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function store(Request $request)
{
$this->validate($request,[
'file' => 'bail|required|array|min:1',
'file.*' => 'bail|required|max:10240'
'file.*' => 'bail|required|max:102400'
]);

$media = TempMedia::create()->addMediaFromRequest('file')->toMediaCollection('default');
Expand Down

0 comments on commit 16dcf2f

Please sign in to comment.