@extends('layouts.app') @section('title') 用户资料 - Kiri Blade @endsection @section('header') 用户资料页面 @endsection @section('content')

用户信息

@if(isset($name))

姓名:{{ $name }}

@else

姓名未设置

@endif @if(isset($email))

邮箱:{{ $email }}

@endif @if(isset($age))

年龄:{{ $age }} 岁

@endif

技能列表

@if(isset($skills) && is_array($skills)) @else

暂无技能

@endif

文章列表

@if(isset($posts) && is_array($posts))
@foreach($posts as $post)

{{ $post['title'] ?? '无标题' }}

{{ $post['content'] ?? '无内容' }}

发布时间:{{ $post['date'] ?? '未知' }}
@endforeach
@else

暂无文章

@endif @endsection