Files
sam-manage/resources/views/lab/strategy/mrp-overseas.blade.php
kent a0ca01d765 refactor(lab): S 메뉴 이모지를 SVG 아이콘으로 변환
- 13개 파일의 이모지를 인라인 SVG 아이콘으로 변환
- Heroicons/Tailwind 스타일 SVG 적용 (fill="none" stroke="currentColor")
- flex items-center gap-2 레이아웃으로 아이콘+텍스트 정렬
- 컬러 클래스 적용 (text-blue-600, text-green-600 등)

변환 파일:
- stablecoin, mrp-overseas, qa-solution, rag-startups
- kodata-vs-nice, confluence-vs-notion, barobill-vs-popbill
- chatbot-compare, sales-strategy, tax
- labor, debt, chatbot

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-14 01:45:38 +09:00

118 lines
4.8 KiB
PHP

@extends('layouts.presentation')
@section('title', '해외 MRP 시스템 분석')
@push('styles')
<style>
.placeholder-container {
min-height: 70vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.placeholder-icon {
width: 5rem;
height: 5rem;
margin-bottom: 2rem;
opacity: 0.6;
color: #059669;
}
.feature-icon {
width: 1.25rem;
height: 1.25rem;
color: #059669;
}
.placeholder-title {
font-size: 2rem;
font-weight: 700;
color: #1e3a8a;
margin-bottom: 1rem;
}
.placeholder-subtitle {
font-size: 1.25rem;
color: #64748b;
max-width: 500px;
text-align: center;
line-height: 1.8;
}
.placeholder-badge {
margin-top: 2rem;
padding: 0.5rem 1.5rem;
background: linear-gradient(135deg, #10b981, #059669);
color: white;
border-radius: 9999px;
font-weight: 600;
font-size: 0.875rem;
}
</style>
@endpush
@section('content')
<div class="min-h-screen bg-gradient-to-br from-emerald-50 to-teal-100">
<div class="container mx-auto px-4 py-12">
<div class="placeholder-container">
<svg class="placeholder-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21" />
</svg>
<h1 class="placeholder-title">해외 MRP 시스템 분석</h1>
<p class="placeholder-subtitle">
글로벌 MRP(Material Requirements Planning) 솔루션 비교와
해외 제조 기업의 도입 사례를 분석합니다.
</p>
<div class="placeholder-badge">Coming Soon</div>
</div>
<div class="max-w-4xl mx-auto mt-12">
<div class="bg-white rounded-2xl shadow-lg p-8">
<h2 class="text-xl font-bold text-gray-800 mb-6 flex items-center">
<svg class="feature-icon mr-3" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01" />
</svg>
예정 콘텐츠
</h2>
<div class="grid md:grid-cols-2 gap-6">
<div class="p-4 bg-emerald-50 rounded-lg">
<h3 class="font-semibold text-emerald-800 mb-2">글로벌 MRP 솔루션</h3>
<ul class="text-sm text-gray-600 space-y-1">
<li> SAP S/4HANA</li>
<li> Oracle Cloud SCM</li>
<li> Microsoft Dynamics 365</li>
<li> Infor CloudSuite</li>
</ul>
</div>
<div class="p-4 bg-blue-50 rounded-lg">
<h3 class="font-semibold text-blue-800 mb-2">기능 비교</h3>
<ul class="text-sm text-gray-600 space-y-1">
<li> 수요 예측 알고리즘</li>
<li> 재고 최적화 기능</li>
<li> 공급망 가시성</li>
<li> AI/ML 통합 수준</li>
</ul>
</div>
<div class="p-4 bg-purple-50 rounded-lg">
<h3 class="font-semibold text-purple-800 mb-2">도입 사례</h3>
<ul class="text-sm text-gray-600 space-y-1">
<li> 자동차 산업 적용 사례</li>
<li> 전자 제조업 도입 효과</li>
<li> 중소기업 맞춤 솔루션</li>
</ul>
</div>
<div class="p-4 bg-orange-50 rounded-lg">
<h3 class="font-semibold text-orange-800 mb-2">비용 분석</h3>
<ul class="text-sm text-gray-600 space-y-1">
<li> 라이선스 모델 비교</li>
<li> 구현 비용 산정</li>
<li> TCO(총소유비용) 분석</li>
<li> ROI 기대 효과</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection