|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/globalaudiovideo/shop.globalaudiovideo.co.in/app/Services/ |
Upload File : |
<?php
namespace App\Services;
use App\Traits\FileManagerTrait;
class MostDemandedService
{
use FileManagerTrait;
public function getProcessedData(object $request, string $image = null): array
{
if ($image) {
$imageName = $request->file('image') ? $this->update(dir:'most-demanded/', oldImage:$image, format: 'webp', image: $request->file('image')) : $image;
}else {
$imageName = $this->upload(dir:'most-demanded/', format: 'webp', image: $request->file('image'));
}
return [
'product_id'=>$request['product_id'],
'banner' => $imageName,
'created_at' => now(),
'updated_at' => now(),
];
}
}