@extends('panel.layout.app', ['disable_tblr' => true])
@section('title', __('How it Works'))
@section('titlebar_actions')
{{ __('Create New Step') }}
@endsection
@section('content')
{{ __('Order') }}
|
{{ __('Title') }}
|
{{ __('Updated At') }}
|
{{ __('Actions') }}
|
@foreach ($howitWorksList as $entry)
{{ $entry->order }}
|
{!! $entry->title !!}
|
{{ date('j.n.Y', strtotime($entry->created_at)) }}
{{ date('H:i:s', strtotime($entry->created_at)) }}
|
@if ($app_is_demo)
@else
@endif
|
@endforeach
@if ($app_is_not_demo)
{{ __('Bottom Line Settings') }}
$defaults['option'] == 0])>
{{ $defaults['html'] }}
{{ __('Save') }}
{{ __('Preview') }} :
{!! $defaults['html'] !!}
{{ __('*You can use HTML in Step Title and Bottom Line.') }}
@endif
@endsection
@push('script')
@endpush