mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
23 lines
662 B
PHP
23 lines
662 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></li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endsection
|