@include('core/base::components.layouts.header')
@php
Assets::getFacadeRoot()
->removeStyles([
'fontawesome',
'select2',
'custom-scrollbar',
'datepicker',
'spectrum',
'fancybox',
])
->removeScripts([
'excanvas',
'ie8-fix',
'modernizr',
'select2',
'datepicker',
'cookie',
'toastr',
'custom-scrollbar',
'stickytableheaders',
'jquery-waypoints',
'spectrum',
'fancybox',
'fslightbox',
]);
@endphp
{!! Assets::renderHeader(['core']) !!}
@yield('styles')
@php
use Botble\Installer\InstallerStep\InstallerStep;
$currentStep = InstallerStep::currentStep();
@endphp
{{ trans('packages/installer::installer.title') }}
@foreach(InstallerStep::getItems() as $step)
@if($step->getRoute() && $currentStep > $loop->iteration)
{{ $step->getLabel() }}
@else
{{ $step->getLabel() }}
@endif
@endforeach
@hasSection('header')
@yield('header')
@endif
@include('packages/installer::partials.alert')
@yield('content')
@hasSection('footer')
@yield('footer')
@endif
{!! Assets::renderFooter() !!}
@push('footer')
@if (Session::has('success_msg') || Session::has('error_msg') || (isset($errors) && $errors->any()) || isset($error_msg))
@endif
@endpush
@yield('scripts')