2026-02-11 17:28:36 +08:00
|
|
|
@extends('layouts.admin')
|
|
|
|
|
|
|
|
|
|
@section('title', 'AI 工具管理')
|
|
|
|
|
|
2026-02-12 17:10:36 +08:00
|
|
|
@section('head')
|
|
|
|
|
@include('admin.partials.modern-index-head')
|
|
|
|
|
@endsection
|
|
|
|
|
|
2026-02-11 17:28:36 +08:00
|
|
|
@section('content')
|
2026-02-12 17:10:36 +08:00
|
|
|
<div class="card modern-index-toolbar mb-3">
|
|
|
|
|
<div class="card-body d-flex flex-column flex-lg-row gap-3 align-items-lg-center justify-content-between">
|
2026-02-11 17:28:36 +08:00
|
|
|
<form method="get" action="{{ route('admin.tools.index') }}" class="d-flex flex-column flex-md-row gap-2 w-100">
|
|
|
|
|
<input class="form-control" type="text" name="q" value="{{ $filters['q'] ?? '' }}" placeholder="搜索工具名称 / 摘要关键词">
|
|
|
|
|
<button class="btn btn-primary" type="submit"><i class="bi bi-search me-1"></i>搜索</button>
|
|
|
|
|
</form>
|
|
|
|
|
<a class="btn btn-success" href="{{ route('admin.tools.create') }}"><i class="bi bi-plus-circle me-1"></i>新建工具</a>
|
|
|
|
|
</div>
|
2026-02-12 17:10:36 +08:00
|
|
|
<div class="card-footer bg-transparent border-0 pt-0">
|
|
|
|
|
<div class="toolbar-meta">共 {{ number_format($items->total()) }} 条工具记录</div>
|
|
|
|
|
</div>
|
2026-02-11 17:28:36 +08:00
|
|
|
</div>
|
|
|
|
|
|
2026-02-12 17:10:36 +08:00
|
|
|
<div class="card modern-index-card">
|
2026-02-11 17:28:36 +08:00
|
|
|
<div class="table-responsive">
|
2026-02-12 17:10:36 +08:00
|
|
|
<table class="table table-vcenter card-table modern-index-table">
|
2026-02-11 17:28:36 +08:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>名称</th>
|
|
|
|
|
<th>分类</th>
|
|
|
|
|
<th>状态</th>
|
|
|
|
|
<th>来源等级</th>
|
|
|
|
|
<th>更新时间</th>
|
|
|
|
|
<th class="text-end">操作</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
@forelse($items as $item)
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
2026-02-12 17:10:36 +08:00
|
|
|
<div class="modern-index-title">{{ $item->name }}</div>
|
|
|
|
|
<div class="modern-index-summary">{{ $item->summary }}</div>
|
2026-02-11 17:28:36 +08:00
|
|
|
</td>
|
|
|
|
|
<td>{{ $item->category?->name ?? '-' }}</td>
|
2026-02-12 17:10:36 +08:00
|
|
|
<td>@include('admin.partials.status-badge', ['status' => $item->status])</td>
|
2026-02-11 17:28:36 +08:00
|
|
|
<td>{{ $item->source_level?->value ?? '-' }}</td>
|
|
|
|
|
<td>{{ $item->updated_at?->format('Y-m-d H:i') }}</td>
|
|
|
|
|
<td class="text-end">
|
|
|
|
|
<a class="btn btn-sm btn-outline-primary" href="{{ route('admin.tools.edit', $item) }}">编辑</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
@empty
|
2026-02-12 17:10:36 +08:00
|
|
|
<tr>
|
|
|
|
|
<td colspan="6" class="text-center text-muted py-5">暂无工具数据,先新增一条内容吧。</td>
|
|
|
|
|
</tr>
|
2026-02-11 17:28:36 +08:00
|
|
|
@endforelse
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-footer">{{ $items->links() }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
@endsection
|
2026-02-12 17:10:36 +08:00
|
|
|
|