mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-02-23 10:43:41 +01:00
This adjusts multiple components, including the table sorting, link share buttons and link icons. All were changed to use views, dynamic components and the new icons. All views were adjusted to use the new icons instead of the Fontawesome Javascript.
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
@extends('layouts.setup')
|
|
|
|
@section('content')
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-12 col-md-8">
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
@lang('setup.check_requirements')
|
|
</div>
|
|
<div class="card-body">
|
|
|
|
<ul>
|
|
@foreach($results as $key => $successful)
|
|
<li>
|
|
@lang('setup.requirements.' . $key)
|
|
@if($successful)
|
|
<x-icon.check class="text-success"/>
|
|
@else
|
|
<x-icon.ban class="text-danger"/>
|
|
@endif
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
|
|
<a href="{{ route('setup.database') }}" class="btn {{ $success ? 'btn-primary' : ' btn-danger disabled' }}">
|
|
@lang('setup.continue')
|
|
</a>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|