novay / laravel-word-template
Package Laravel untuk melakukan penggantian kata pada file menggunakan template dokumen (.rtf) yang sudah disediakan.
Installs: 11 189
Dependents: 0
Suggesters: 0
Security: 0
Stars: 38
Watchers: 4
Forks: 20
Open Issues: 2
Language:Rich Text Format
Requires
- php: >=5.5.0
This package is auto-updated.
Last update: 2024-11-16 06:23:24 UTC
README
About
Laravel Package to perform word replacement on files using document templates (.rtf
) that have been provided.
[ID] Package Laravel untuk melakukan penggantian kata pada file menggunakan template dokumen (.rtf
) yang sudah disediakan.
Requirements
Installation Instructions
-
From your projects root folder in terminal run:
composer require novay/laravel-word-template
-
Register the package
-
Laravel 5.5 and up Uses package auto discovery feature, no need to edit the
config/app.php
file. -
Laravel 5.4 and below Register the package with laravel in
config/app.php
underproviders
andaliases
with the following:
'providers' => [ ... Novay\WordTemplate\WordTemplateServiceProvider::class, ]; 'aliases' => [ ... 'WordTemplate' => Novay\WordTemplate\Facade::class, ];
-
Panduan Penggunaan [ID]
-
Siapkan template yang ingin Anda gunakan, pastikan template berupa file dokumen. Sebagai contoh anda bisa menggunakan contoh ini. Jika tidak langsung terunduh secara otomatis, kamu bisa tekan
Ctrl+S
untuk menyimpan secara manual dengan format.rtf
. Setelah terdownload cukup letakkan file tersebut di folderpublic
atau dimanapun anda mau. -
Silahkan bermain-main dengan
facade
ini:
WordTemplate::export('file.rtf', array(), 'nama_file.doc');
Method ini membutuhkan 3 parameter didalam penggunaannya:
- Lokasi file dokumen yang menjadi template Anda
Contoh: public_path('template/document.rtf')
- Kumpulan kata-kata awal beserta kata penggantinya dalam bentuk array. Lihat contoh
- Tentukan nama file yang diinginkan ketika file diunduh.
Contoh. file.doc
Contoh
Agar cepat, salin baris berikut ke dalam fileroutes.php
Anda :
Route::get('/', function () { $file = public_path('surat_pernyataan.rtf'); $array = array( '[NOMOR_SURAT]' => '015/BT/SK/V/2017', '[PERUSAHAAN]' => 'CV. Borneo Teknomedia', '[NAMA]' => 'Melani Malik', '[NIP]' => '6472065508XXXX', '[ALAMAT]' => 'Jl. Manunggal Gg. 8 Loa Bakung, Samarinda', '[PERMOHONAN]' => 'Permohonan pengurusan pembuatan NPWP', '[KOTA]' => 'Samarinda', '[DIRECTOR]' => 'Noviyanto Rahmadi', '[TANGGAL]' => date('d F Y'), ); $nama_file = 'surat-keterangan-kerja.doc'; return WordTemplate::export($file, $array, $nama_file); });
Basic Usage [EN]
-
You need to prepare the template document that you want, for example you can download this file. If it is not downloading automatically, you can just press
Ctrl+S
to save it manually as.rtf
file. -
You can use this
facade
to play with this :
WordTemplate('file.rtf', array(), 'nama_file.doc');
This method needs you to specify 3 parameters in it:
- Location of your document template file
Ex. public_path('template/document.rtf')
- The initial words along with their replacement in the arrays form. See example
- Specifies the file name when the file is downloaded
Ex. file.doc
Example
Copy this file in your routes directly for the instance :
Route::get('/', function () { $file = public_path('surat_pernyataan.rtf'); $array = array( '[NOMOR_SURAT]' => '015/BT/SK/V/2017', '[PERUSAHAAN]' => 'CV. Borneo Teknomedia', '[NAMA]' => 'Melani Malik', '[NIP]' => '6472065508XXXX', '[ALAMAT]' => 'Jl. Manunggal Gg. 8 Loa Bakung, Samarinda', '[PERMOHONAN]' => 'Permohonan pengurusan pembuatan NPWP', '[KOTA]' => 'Samarinda', '[DIRECTOR]' => 'Noviyanto Rahmadi', '[TANGGAL]' => date('d F Y'), ); $nama_file = 'surat-keterangan-kerja.doc'; return WordTemplate::export($file, $array, $nama_file); });
License
Laravel Word Template is licensed under the MIT license. Enjoy!