mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-10 03:26:38 -05:00
29 lines
896 B
PHP
29 lines
896 B
PHP
@extends('dashboard.core', [
|
|
'heading' => 'Credits'
|
|
])
|
|
|
|
@section('dashboard-body')
|
|
<div class="dashboard-credits">
|
|
<h2>Authors</h2>
|
|
|
|
<ul>
|
|
@foreach(App\Dashboard::$author_credits as $credit)
|
|
<li><a href="{{ $credit['url'] }}" target="_blank" rel="noreferrer">{{ $credit['name'] }}</a></li>
|
|
@endforeach
|
|
</ul>
|
|
|
|
<h2>Libraries</h2>
|
|
|
|
<ul>
|
|
@foreach(App\Dashboard::$library_credits as $credit)
|
|
<li>
|
|
<a href="{{ $credit['url'] }}" target="_blank" rel="noreferrer">{{ $credit['name'] }}</a>
|
|
|
|
@if(array_key_exists('license', $credit))
|
|
(<a href="{{ $credit['license'] }}" target="_blank" rel="noreferrer">License</a>)
|
|
@endif
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endsection
|