export

star 915

Generate Excel export class for CatchAdmin module.

JaguarJack By JaguarJack schedule Updated 1/22/2026

name: export description: Generate Excel export class for CatchAdmin module.

Step 7: Generate Export Class

创建数据导出类。

File Location

modules/{Module}/Export/{Model}.php

Template

<?php

namespace Modules\{Module}\Export;

use Catch\Support\Excel\Export;

class {Model} extends Export
{
    protected array $header = [
        'ID', 'Name', 'Created At'
    ];

    public function array(): array
    {
        return \Modules\{Module}\Models\{Model}::query()
            ->select('id', 'name', 'created_at')
            ->get()
            ->toArray();
    }
}

Header Mapping

Field Header
id ID
name Name
email Email
status Status
created_at Created At

With Relationships

public function array(): array
{
    return {Model}::query()
        ->with('category')
        ->get()
        ->map(fn ($item) => [
            $item->id,
            $item->name,
            $item->category?->name ?? '-',
            $item->created_at,
        ])
        ->toArray();
}

Controller Usage

public function export(): mixed
{
    return {Model}::query()
        ->select('id', 'name', 'created_at')
        ->get()
        ->download(['ID', 'Name', 'Created At']);
}
Install via CLI
npx skills add https://github.com/JaguarJack/catch-admin --skill export
Repository Details
star Stars 915
call_split Forks 137
navigation Branch main
article Path SKILL.md
More from Creator