How to get all file From Project Public folder
Code:
$files = File::files(public_path('uploads\client\voice_call_message'));
return $this->broadcast($files[0]);
return $base_name = basename($files[0], ".wav");
How to get all file From Project Public folder
Code:
$files = File::files(public_path('uploads\client\voice_call_message'));
return $this->broadcast($files[0]);
return $base_name = basename($files[0], ".wav");
Comments
Post a Comment