- StrategyController 생성 (15개 메소드) - presentation.blade.php 레이아웃 추가 - 전략 문서 템플릿 15개 생성: - tax, labor, debt, chatbot (슬라이드 프레젠테이션) - rag-startups, douzone (Chart.js 통합) - confluence-vs-notion (비교 분석 + 퀴즈) - sales-strategy (8 슬라이드 + 채팅 UI) - kodata-vs-nice, barobill-vs-popbill (API 비교) - knowledge-search, chatbot-compare (탭 기반) - stablecoin, mrp-overseas, qa-solution (placeholder) - 라우트 및 사이드바 메뉴 연결 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
107 lines
4.0 KiB
PHP
107 lines
4.0 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 {
|
|
font-size: 5rem;
|
|
margin-bottom: 2rem;
|
|
opacity: 0.6;
|
|
}
|
|
.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">
|
|
<div class="placeholder-icon">🏭</div>
|
|
<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">
|
|
<span class="mr-3">📋</span>
|
|
예정 콘텐츠
|
|
</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
|