add icon uploads
This commit is contained in:
parent
0f3bb6de6b
commit
97ecbebb9e
8 changed files with 286 additions and 1 deletions
10
backend/app/Shared/Files/FileUploader.php
Normal file
10
backend/app/Shared/Files/FileUploader.php
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace App\Shared\Files;
|
||||
|
||||
interface FileUploader
|
||||
{
|
||||
public function upload(FileToUpload $file, string $folder): string;
|
||||
|
||||
public function url(string $path): string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue