@extends('layout.dashboard') @section('content')
{{ trans('dashboard.metrics.metrics') }} {{ trans('dashboard.metrics.add.title') }}
@include('partials.dashboard.errors')
@foreach($metrics as $metric)
{{ $metric->name }} @if($metric->description)

{{ Str::words($metric->description, 5) }}

@endif
@endforeach
@stop