@extends('admin.layouts.app') @section('title', 'SKU 수정') @section('page_title', 'SKU 수정') @section('page_desc', 'SKU(권종/가격)를 수정합니다.') @push('head') @endpush @section('content') @php $p = $sku ?? null; $qs = request()->only(['q','category_id','product_id','status','page']); $st = (string)old('status', (string)($p->status ?? 'active')); $pill = $st === 'active' ? 'pill--ok' : 'pill--bad'; $stText = $st === 'active' ? '노출' : '숨김'; $face = (int)old('face_value', (int)($p->face_value ?? 0)); $normal = (int)old('normal_price', (int)($p->normal_price ?? 0)); $rate = (string)old('discount_rate', (string)($p->discount_rate ?? '0.00')); $sale = (int)($p->sale_price ?? 0); @endphp