我想知道如何在Laravel中避免文件冲突。假设我有两个具有相同文件名的用户,并且两者都受到影响,因为其中一个用户更改了文件,我该如何避免这种情况。这是我的代码
$file = $request->file('file');
$myfilename = $vid->getClientOriginalName().uniqid();
$mypath = $file->storeAs(
'video',
$myfilename);
$location = public_path('/allvids',$myfilename);
$file->move($location);
$file->profile = $myfilename;