goodnesskay / LARAVEL-PDF-VIEWER by goodnesskay

A Laravel Package for viewing PDF files or documents on Web App
41,220
86
6
Package Data
Maintainer Username: goodnesskay
Maintainer Contact: gtkbrain@gmail.com (Goodness Toluwanimi Kayode)
Package Create Date: 2017-01-25
Package Last Update: 2017-07-02
Home Page: https://goodnesskayode.me
Language: JavaScript
License: MIT
Last Refreshed: 2024-05-02 15:02:38
Package Statistics
Total Downloads: 41,220
Monthly Downloads: 195
Daily Downloads: 9
Total Stars: 86
Total Watchers: 6
Total Forks: 51
Total Open Issues: 12

Laravel PDF VIEWER

Latest Stable Version License Build Status

This package is meant to help with viewing portable document file(PDF) on the web seamlessly when developing with Laravel. The package makes use of ViewerJS

Requirement

Installation

To install into your project, run the command below in your terminal.

composer require goodnesskay/laravelpdfviewer

Once the package is done being installed, register the service provider. Open config/app.php and add the following to the providers key.

Goodnesskay\LaravelPdfViewer\LaravelPdfViewerServiceProvider::class,

Configure

Run this in your terminal:

php artisan vendor:publish --provider="Goodnesskay\LaravelPdfViewer\LaravelPdfViewerServiceProvider" 

It will publish a folder named laraview to the root folder of your project.

How it Works

Simple!!! After installations and configurations have been carried out successfully, add the code below to your html file

{{ asset('/laraview/#../folder-name/the-pdf-file.pdf') }}

It should look like this:

<iframe src ="{{ asset('/laraview/#../pdf/test.pdf') }}" width="1000px" height="600px"></iframe>

Then, you should have something like this:

Goodness Kayode Laravel-pdfviewer

Note:

After #../ in {{ asset('/laraview/#../folder-name/the-pdf-file.pdf') }}, what should follow is the folder name of the pdf files in the public folder then, the pdf file name can follow.

Contribute

You can fork this package, contribute and submit a pull request. I will really love it.

You want to appreciate me?

You can appreciate me by starring this repository and follow me on Github , twitter and subscribe to my Youtube Channel!

I love you like mad.

Goodness Kayode | Pusher of Codes

License

MIT License (MIT).