Added credits
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
@extends('layout.dashboard')
|
||||
|
||||
@section('content')
|
||||
<div class="content-panel">
|
||||
@if(isset($sub_menu))
|
||||
@include('dashboard.partials.sub-sidebar')
|
||||
@endif
|
||||
<div class="content-wrapper">
|
||||
<div class="header sub-header" id="application-setup">
|
||||
<span class="uppercase">
|
||||
{{ trans('dashboard.settings.credits.credits') }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<h4>Cachet</h4>
|
||||
|
||||
<p>{!! trans('dashboard.settings.credits.license') !!}</p>
|
||||
|
||||
<hr>
|
||||
|
||||
<h4>{{ trans('dashboard.settings.credits.backers-title') }}</h4>
|
||||
|
||||
<p>{!! trans('dashboard.settings.credits.backers') !!}</p>
|
||||
|
||||
<ul>
|
||||
@foreach($backers as $backer)
|
||||
<li>{{ $backer['name'] }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
|
||||
<h4>{{ trans('dashboard.settings.credits.contributors') }}</h4>
|
||||
|
||||
<p>{{ trans('dashboard.settings.credits.thank-you', ['count' => count($contributors)]) }}</p>
|
||||
|
||||
<ul class="list-inline">
|
||||
@foreach($contributors as $contributor)
|
||||
<li>
|
||||
<img src="{{ $contributor['avatar'] }}" class="img-rounded img-responsive" title="{{ $contributor['name'] }}" data-toggle="tooltip">
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
||||
Reference in New Issue
Block a user