@extends('layouts.app') @section('title', 'Analytics - ' . config('app.name')) @section('content')
@php $stats = [ ['label' => 'Total Users', 'value' => '1,234', 'change' => '+12%'], ['label' => 'Revenue', 'value' => '$45,678', 'change' => '+8%'], ['label' => 'Active Projects', 'value' => '23', 'change' => '+5%'], ['label' => 'Completion Rate', 'value' => '94%', 'change' => '+2%'], ]; @endphp @foreach($stats as $stat)
{{ $stat['label'] }}