@extends('installer::layouts.master') @section('page', __('Requirements')) @section('content')

{{__('Installation Wizard')}}
{{__('Just a few steps more. :)')}}

@include('installer::includes.alerts')
{{__("Thank you for purchasing! Next, we need to check your server's configuration.")}}
@foreach($requirements['requirements'] as $type => $requirement)
  • {{ strtoupper($type) }} @if($type == 'php') ({{ $php['minimum'] }} {{__('required')}}) @if($php['supported']) @else @endif {{ $php['current'] }} @endif
  • @foreach($requirements['requirements'][$type] as $extention => $enabled)
  • {{ $extention }} @if($enabled) @else @endif
  • @endforeach
@endforeach
@endsection