style: Pint 포맷팅 적용
This commit is contained in:
@@ -236,7 +236,7 @@ public function destroy(int $id): JsonResponse
|
||||
*/
|
||||
public function forceDestroy(int $id): JsonResponse
|
||||
{
|
||||
if (!auth()->user()?->is_super_admin) {
|
||||
if (! auth()->user()?->is_super_admin) {
|
||||
return response()->json([
|
||||
'success' => false,
|
||||
'message' => '슈퍼관리자만 영구 삭제할 수 있습니다.',
|
||||
@@ -263,7 +263,7 @@ public function forceDestroy(int $id): JsonResponse
|
||||
*/
|
||||
public function restore(int $id): JsonResponse
|
||||
{
|
||||
if (!auth()->user()?->is_super_admin) {
|
||||
if (! auth()->user()?->is_super_admin) {
|
||||
return response()->json([
|
||||
'success' => false,
|
||||
'message' => '슈퍼관리자만 복원할 수 있습니다.',
|
||||
|
||||
Reference in New Issue
Block a user