PHPackages                             andjelko/laravel-phpjasperxml - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. andjelko/laravel-phpjasperxml

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

andjelko/laravel-phpjasperxml
=============================

Laravel package to render JasperReports

1.4.0(7y ago)1152PHP

Since Jun 13Pushed 7y ago1 watchersCompare

[ Source](https://github.com/andjelko/laravel-phpjasperxml)[ Packagist](https://packagist.org/packages/andjelko/laravel-phpjasperxml)[ RSS](/packages/andjelko-laravel-phpjasperxml/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

laravel-phpjasperxml
====================

[](#laravel-phpjasperxml)

A Laravel package to render jasperReports. This extension was based on PHPJasperXML

\###Installation

Add the following lines to your composer.json file

```
...
  andjelko/laravel-phpjasperxml": "^1.0"
}

```

Then update your packages with:

```
composer update

```

Add the Service Provider to you config/app.php file

```
'providers' => [
  ...
  Andjelko\PhpJasperXML\JasperReportsServiceProvider::class,
]

```

And add an alias to the PHPJasperXML class

```
'aliases' => [
  ...
  'PHPJasperXML'  => Andjelko\PhpJasperXML\PHPJasperXML::class,
]

```

Create an includes folder on your app and save there your jrxml files.

Create a ReportController with the following code

```
