2018-04-23 23:12:17 -04:00
|
|
|
@extends('dashboard.core', [
|
|
|
|
'heading' => 'Credits'
|
|
|
|
])
|
2018-04-18 23:32:22 -04:00
|
|
|
|
2018-04-23 23:12:17 -04:00
|
|
|
@section('dashboard-body')
|
|
|
|
<div class="dashboard-credits">
|
|
|
|
<h2>Authors</h2>
|
2018-04-18 23:32:22 -04:00
|
|
|
|
2018-04-23 23:12:17 -04:00
|
|
|
<ul>
|
2018-04-23 23:39:40 -04:00
|
|
|
@foreach(App\Dashboard::$author_credits as $credit)
|
2018-04-23 23:12:17 -04:00
|
|
|
<li><a href="{{ $credit['url'] }}" target="_blank" rel="noreferrer">{{ $credit['name'] }}</a></li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
2018-04-18 23:32:22 -04:00
|
|
|
|
2018-04-23 23:12:17 -04:00
|
|
|
<h2>Libraries</h2>
|
2018-04-18 23:32:22 -04:00
|
|
|
|
2018-04-23 23:12:17 -04:00
|
|
|
<ul>
|
2018-04-23 23:39:40 -04:00
|
|
|
@foreach(App\Dashboard::$library_credits as $credit)
|
2018-04-25 01:22:33 -04:00
|
|
|
<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>
|
2018-04-23 23:12:17 -04:00
|
|
|
@endforeach
|
|
|
|
</ul>
|
2018-04-18 23:32:22 -04:00
|
|
|
</div>
|
|
|
|
@endsection
|