@extends('frontend.main_master') @section('title', 'The Planets in Astrology: Meaning & Influence | ' . t('site-title', 'Astro Wise')) @section('meta_description', 'Complete guide to the astrological planets: Sun, Moon, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, and Pluto. Discover their archetypal power in your natal chart.') @section('meta_keywords', 'planets in astrology, astrology planets, sun sign, moon sign, mercury in astrology, venus, mars, jupiter, saturn, uranus, neptune, pluto, natal chart planets') @push('schema') @endpush @push('styles') @endpush @section('content')
{{-- Breadcrumb Component --}}
@php $planets = [ ['name' => 'Sun', 'image' => 'gunes-160x160.webp', 'route' => 'planets.sun', 'snippet' => 'Core identity, conscious vitality, and life purpose.'], ['name' => 'Moon', 'image' => 'ay-160x160.webp', 'route' => 'planets.moon', 'snippet' => 'Emotional foundations, instinctual reactions, and inner safety.'], ['name' => 'Mercury', 'image' => 'merkur-160x160.webp', 'route' => 'planets.mercury', 'snippet' => 'Mental processes, communication style, and intellectual analysis.'], ['name' => 'Venus', 'image' => 'venus-160x160.webp', 'route' => 'planets.venus', 'snippet' => 'Love, relational harmony, core values, and aesthetic appreciation.'], ['name' => 'Mars', 'image' => 'mars-160x160.webp', 'route' => 'planets.mars', 'snippet' => 'Drive, assertion, ambition, courage, and decisive action.'], ['name' => 'Jupiter', 'image' => 'jupiter-160x160.webp', 'route' => 'planets.jupiter', 'snippet' => 'Expansion, higher wisdom, abundance, faith, and philosophy.'], ['name' => 'Saturn', 'image' => 'saturn-160x160.webp', 'route' => 'planets.saturn', 'snippet' => 'Structure, discipline, boundaries, mastery, and endurance.'], ['name' => 'Uranus', 'image' => 'uranus-160x160.webp', 'route' => 'planets.uranus', 'snippet' => 'Innovation, liberation, breakthrough insights, and sudden change.'], ['name' => 'Neptune', 'image' => 'neptun-160x160.webp', 'route' => 'planets.neptune', 'snippet' => 'Spirituality, subtle perception, artistic imagination, and idealism.'], ['name' => 'Pluto', 'image' => 'pluton-160x160.webp', 'route' => 'planets.pluto', 'snippet' => 'Radical transformation, inner power, regeneration, and rebirth.'], ]; @endphp @foreach($planets as $planet) @endforeach
@endsection