@extends('agency.layouts.app')
@section('title', 'Satış Yönetimi')
@section('page_title', 'Satış Başlangıç Ekranı')
@push('styles')
@endpush
@section('content')
{{-- ═══ NAV TABS ═══════════════════════════════════════════════════════ --}}
@include('agency.sales.partials.sales_nav_tabs')
{{-- ═══ HEADER ═══════════════════════════════════════════════════════ --}}
{{-- ═══ FLASH MESSAGES ════════════════════════════════════════════════ --}}
@if(session('success'))
@endif
@if(session('error'))
@endif
{{-- ═══ DYNAMIC VIEW CONTENT ══════════════════════════════════════════ --}}
@if($view === 'list')
@include('agency.sales.partials.list_view')
@else
@include('agency.sales.partials.target_section')
@endif
@if($view !== 'list')
{{-- Hedef Ayarları Modalı --}}
@include('agency.sales.partials.target_modal')
@endif
@endsection
@push('scripts')
@endpush