PHPackages                             alexdeoliveira/laravel-zabbix-graph - 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. alexdeoliveira/laravel-zabbix-graph

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

alexdeoliveira/laravel-zabbix-graph
===================================

Get nice looking graphs of your Zabbix devices in Laravel.

1.1.0(4y ago)01331MITPHPPHP ^8.0

Since Apr 21Pushed 4y agoCompare

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

READMEChangelog (1)Dependencies (2)Versions (7)Used By (0)

📈 Laravel Zabbix Graph
======================

[](#-laravel-zabbix-graph)

Get a graph from Zabbix to display on a webpage or to save to a file. If you are not using Laravel, then please check out [this repository](https://github.com/casperboone/zabbix-graph).

Original Package
----------------

[](#original-package)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require alexdeoliveira/laravel-zabbix-graph
```

You must install the service provider:

```
// config/app.php
'providers' => [
    ...
    Alexdeoliveira\LaravelZabbixGraph\ZabbixGraphServiceProvider::class,
],
```

If you want to, you can also add the facade:

```
// config/app.php
'aliases' => [
    ...
    'ZabbixGraph' => Alexdeoliveira\LaravelZabbixGraph\ZabbixGraphFacade::class,
],
```

You can publish the config file with (the [default config file](https://github.com/alexdeoliveira/laravel-zabbix-graph/blob/master/config/zabbixgraph.php) will suffice in most cases):

```
php artisan vendor:publish --provider="Alexdeoliveira\LaravelZabbixGraph\ZabbixGraphServiceProvider"

```

Make sure to update the config file or your .env file with the details of your Zabbix server.

Usage
-----

[](#usage)

Output a Zabbix graph to an HTTP endpoint (using method injection):

```
