@extends('backend.layouts.app') @section('title') Dashboard @endsection @section('content')
@foreach ($reports as $report)
{{$report['name']}} {{ number_format($report['value'], 0) }}
@endforeach
@endsection