Building Export to CSV with Livewire v4
February 01, 2026
•
1 min read
•
15 views
Export data to downloadable CSV.
Component
@php
new class extends Livewire\Component {
public function export()
{
$filename = 'export-' . now()->format('Y-m-d') . '.csv';
return response()->streamDownload(function () {
$handle = fopen('php://output', 'w');
fputcsv($handle, ['Name', 'Email', 'Created']);
User::chunk(100, function ($users) use ($handle) {
foreach ($users as $user) {
fputcsv($handle, [$user->name, $user->email, $user->created_at]);
}
});
fclose($handle);
}, $filename);
}
}
@endphp
Related Posts
Introduction to Livewire v4: The Future of Laravel Full-Stack Development
Discover what's new in Livewire v4 and why it's a game-changer for Laravel developers.
Single-File Components in Livewire v4: The View-First Approach
Learn how to create single-file components with the new .wire.php extension.
Multi-File Components (MFC) in Livewire v4
Organize complex components with the new multi-file component structure.
Comments (0)
No comments yet. Be the first to comment!