| Current Path : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Services/ |
| Current File : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Services/DefaultAccessService.php |
<?php
namespace App\Services;
use App\Models\DefaultAccess;
use Exception;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Log;
class DefaultAccessService
{
/**
* @throws Exception
*/
public function show(): array
{
try {
$array = [];
$defaultAccess = DefaultAccess::where(['user_id' => Auth::id()])->get();
if ($defaultAccess) {
foreach ($defaultAccess as $default) {
$array[$default->name] = $default->default_id;
}
}
return $array;
} catch (Exception $exception) {
Log::info($exception->getMessage());
throw new Exception($exception->getMessage(), 422);
}
}
/**
* @throws Exception
*/
public function storeOrUpdate($request = []): array
{
try {
if (!blank($request)) {
foreach ($request as $key => $item) {
if ($key == 'branch_id') {
if (Auth::user()->branch_id != '0') {
$item = Auth::user()->branch_id;
}
}
$defaultAccess = DefaultAccess::firstOrNew(['user_id' => Auth::id(), 'name' => $key]);
$defaultAccess->default_id = $item;
$defaultAccess->save();
}
}
return $this->show();
} catch (Exception $exception) {
Log::info($exception->getMessage());
throw new Exception($exception->getMessage(), 422);
}
}
}