@extends('layouts.base') @section('css') @endsection @section('content')

{{ __('platform.title') }}

{{ __('platform.select') }}

  1. 1

    {{ __('platform.wizard.step-one') }}

  2. 2

    {{ __('platform.wizard.step-two') }}

  3. 3

    {{ __('platform.wizard.step-three') }}

  4. 4

    {{ __('platform.wizard.step-four') }}

  5. 5

    {{ __('platform.wizard.step-five') }}

@foreach(\App\Models\Platform::all()->toArray() as $item) @php $color = json_decode($item['color'],true); @endphp
@if($item['logo_type'] == 'image') @else {!! $item['logo'] !!} @endif

{{ $item['title'] }}

@endforeach
...
@include('widgets.subscription')
@endsection @section('js') @endsection @section('script') @endsection