@extends('layout.dashboard') @section('content')
@if(isset($sub_menu)) @include('dashboard.partials.sub-sidebar') @endif
{{ trans('dashboard.settings.credits.credits') }}

Cachet

{!! trans('dashboard.settings.credits.license') !!}


{{ trans('dashboard.settings.credits.backers-title') }}

{!! trans('dashboard.settings.credits.backers') !!}

    @foreach($backers as $backer)
  • {{ $backer['name'] }}
  • @endforeach

{{ trans('dashboard.settings.credits.contributors') }}

{{ trans('dashboard.settings.credits.thank-you', ['count' => count($contributors)]) }}

    @foreach($contributors as $contributor)
  • @endforeach

@stop