{{-- Extends layout --}} @extends(getThemeBasePath()) @section('page_title') {{$page_title}} @endsection {{-- Content --}} @section('content')

{{$title}}

@foreach($wizardSteps as $stepNo => $stepName)
{{$stepNo}}

{{$stepName}} @if(in_array($stepNo,$assignedTasksSteps))@endif

@endforeach
@foreach($wizardViews as $stepNo => $stepView)

{{$wizardSteps[$stepNo]}}   @if((isset($isMobile) && $isMobile != 0) && in_array($stepNo,$assignedTasksSteps))@endif

@if(!empty($stepView)) @include($stepView) @endif
@endforeach
@endsection {{-- Scripts Section --}} @section('scripts') @php $tabName = request()->get('tabName'); $tabName2 = request()->get('tabName2'); @endphp @endsection