@extends('admin.layouts.app')
@section('title', __('integrations.title'))
@section('header', __('integrations.title'))
@section('breadcrumb')
Admin
/
{{ __('integrations.title') }}
@endsection
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
{{ __('integrations.subtitle') }}
{{-- ── Google Calendar / iCal ─────────────────────────────────────────────── --}}
{{ __('integrations.gcal_title') }}
{{ __('integrations.gcal_desc') }}
{{-- iCal URL --}}
{{-- Steps --}}
{{ __('integrations.gcal_steps') }}
- {{ __('integrations.gcal_step1') }}
- {{ __('integrations.gcal_step2') }}
- {{ __('integrations.gcal_step3') }}
- {{ __('integrations.gcal_step4') }}
@php
$gcalAddUrl = 'https://calendar.google.com/calendar/r?cid=' . urlencode($icalUrl);
@endphp
{{ __('integrations.gcal_btn') }}
{{-- ── Facebook Events ──────────────────────────────────────────────────────── --}}
{{ __('integrations.fb_title') }}
@if($fbConfigured)
✓ {{ __('integrations.fb_configured') }}
@else
{{ __('integrations.fb_not_set') }}
@endif
{{ __('integrations.fb_desc') }}
{{-- Settings form --}}
{{-- Setup guide --}}
{{ __('integrations.fb_setup_steps') }}
- {{ __('integrations.fb_step1') }}
- {{ __('integrations.fb_step2') }}
- {{ __('integrations.fb_step3') }}
- {{ __('integrations.fb_step4') }}
{{-- ── Zapier & Make ───────────────────────────────────────────────────────── --}}
{{ __('integrations.zapier_title') }}
{{ __('integrations.zapier_desc') }}
{{-- How it works --}}
{{ __('integrations.zapier_how') }}
{{ __('integrations.zapier_how_desc') }}
{{-- Zapier steps --}}
⚡ {{ __('integrations.zapier_steps_title') }}
- {{ __('integrations.zapier_step1') }}
- {{ __('integrations.zapier_step2') }}
- {{ __('integrations.zapier_step3') }}
- {{ __('integrations.zapier_step4') }}
- {{ __('integrations.zapier_step5') }}
{{-- Make steps --}}
⚙️ {{ __('integrations.make_steps_title') }}
- {{ __('integrations.make_step1') }}
- {{ __('integrations.make_step2') }}
- {{ __('integrations.make_step3') }}
- {{ __('integrations.make_step4') }}
- {{ __('integrations.make_step5') }}
{{-- Available event types --}}
@endsection