mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-17 19:58:27 +00:00
12 lines
200 B
PHP
12 lines
200 B
PHP
<?php
|
|
namespace App\Services;
|
|
|
|
use Illuminate\Http\UploadedFile;
|
|
|
|
class LogoService
|
|
{
|
|
public function store(UploadedFile $file): string
|
|
{
|
|
return $file->store('img', 'public');
|
|
}
|
|
}
|