@php
$team = [
['name' => 'John Doe', 'email' => 'john@example.com', 'role' => 'Admin'],
['name' => 'Jane Smith', 'email' => 'jane@example.com', 'role' => 'Developer'],
['name' => 'Bob Johnson', 'email' => 'bob@example.com', 'role' => 'Designer'],
['name' => 'Alice Williams', 'email' => 'alice@example.com', 'role' => 'Developer'],
];
@endphp
{{ substr($member['name'], 0, 1) }}
{{ $member['name'] }}
{{ $member['role'] }}