PHPワードの場合:
// you can import it or put it on variable like this
$phpWord = new \PhpOffice\PhpWord\PhpWord();
//Now you can access PhpWord function
// Adding an empty Section to the document...
$section = $phpWord->addSection();
// Adding Text element to the Section having font styled by default...
$section->addText(
htmlspecialchars(
'"Learn from yesterday, live for today, hope for tomorrow. '
. 'The important thing is not to stop questioning." '
. '(Albert Einstein)'
)
);
対象: Maatwebsite/Laravel-Excel
の providers 配列に ServiceProvider を追加しますconfig/app.php
'Maatwebsite\Excel\ExcelServiceProvider'
ファサードに追加:
'Excel' => 'Maatwebsite\Excel\Facades\Excel'
エクセルの例:
Excel::create('Laravel Excel', function($excel) {
$excel->sheet('Excel sheet', function($sheet) {
$sheet->setOrientation('landscape');
});
})->export('xls');
他の機能はこれを参照してください:
- Phpワード
- Maatウェブサイト/Laravel-Excel