PHPackages                             basalam/laravel-kendo-ui - 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. [Framework](/categories/framework)
4. /
5. basalam/laravel-kendo-ui

Abandoned → Basalam\_Kendo\_UlArchivedPackage[Framework](/categories/framework)

basalam/laravel-kendo-ui
========================

Kendo UI package for Laravel

1.0(8y ago)4639MITPHPPHP &gt;=5.4.0

Since Dec 24Pushed 6y agoCompare

[ Source](https://github.com/Basalam/Laravel_Kendu_Ui)[ Packagist](https://packagist.org/packages/basalam/laravel-kendo-ui)[ RSS](/packages/basalam-laravel-kendo-ui/feed)WikiDiscussions master Synced yesterday

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

Laravel Package
===============

[](#laravel-package)

**this repo is not maintained anymore**

This package provides you with a simple tool to set up Kendo UI into your project

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

[](#installation)

### require

[](#require)

`composer require basalam/laravel-kendo-ui`

In project composer.json

```
    "require": {
	    "basalam/laravel-kendo-ui": "1.0"
	},
    "repositories": [
	  {
		"type": "vcs",
		"url": "git@github.com:Basalam/Laravel_Kendu_Ui.git"
	  }
	]
```

After that from application directory in terminal: php composer.phar update

When package downloaded, add the service provider in `config/app.php` at the end of "providers" array:

```
'Kendo\KendoUIServiceProvider',

```

And as last run command in terminal to copy assets from package into "public" directory:

```
php artisan vendor:publish --tag=public --force

```

Usage
-----

[](#usage)

### Basic css:

[](#basic-css)

```

```

### Basic js:

[](#basic-js)

```

```

### PHP usage example (Chart):

[](#php-usage-example-chart)

```
    $errorBars = new \Kendo\Dataviz\UI\ChartSeriesItemErrorBars();
    $errorBars -> value('stddev');

    $series = new \Kendo\Dataviz\UI\ChartSeriesItem();
    $series->data(array(7.943, 7.848, 9.284, 9.263, 9.801, 3.890, 8.238, 9.552))
           ->errorBars($errorBars);

    $valueAxis = new \Kendo\Dataviz\UI\ChartValueAxisItem();

    $valueAxis->labels(array('format' => '{0}%'))
              ->line(array('visible' => false))
              ->axisCrossingValue(0);

    $categoryAxis = new \Kendo\Dataviz\UI\ChartCategoryAxisItem();
    $categoryAxis->categories(array(2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010))
                 ->line(array('visible' => false));

    $tooltip = new \Kendo\Dataviz\UI\ChartTooltip();
    $tooltip->visible(true)
            ->format('{0}%')
            ->template('#= value # (σ = #= kendo.toString(high - low, "N2") #)');

    $chart = new \Kendo\Dataviz\UI\Chart('chart');
    $chart->title(array('text' => 'GDP growth and standard deviation'))
          ->legend(array('visible' => false))
          ->addSeriesItem($series )
          ->addValueAxisItem($valueAxis)
          ->addCategoryAxisItem($categoryAxis)
          ->tooltip($tooltip)
          ->seriesDefaults(array('type' => 'area'));

    echo $chart->render();
```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 95.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3061d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ca9f5a92e2c28464350278edc7e10fecc8614fd51343380bfd9c78de25382733?d=identicon)[basalam\_developers](/maintainers/basalam_developers)

![](https://www.gravatar.com/avatar/e248f51aa9417b9c76493c87c1e8deff59ff84adc40da548027a90c601b4b351?d=identicon)[alish](/maintainers/alish)

---

Top Contributors

[![KingCastle](https://avatars.githubusercontent.com/u/19357118?v=4)](https://github.com/KingCastle "KingCastle (21 commits)")[![MahdiMajidzadeh](https://avatars.githubusercontent.com/u/6115476?v=4)](https://github.com/MahdiMajidzadeh "MahdiMajidzadeh (1 commits)")

---

Tags

frameworklaravelpackagekendo ui

### Embed Badge

![Health badge](/badges/basalam-laravel-kendo-ui/health.svg)

```
[![Health](https://phpackages.com/badges/basalam-laravel-kendo-ui/health.svg)](https://phpackages.com/packages/basalam-laravel-kendo-ui)
```

###  Alternatives

[jsdecena/laracom

Laravel powered e-commerce

2.0k4.4k](/packages/jsdecena-laracom)[hemp/presenter

Easy Model Presenters in Laravel

247592.6k1](/packages/hemp-presenter)[rahulalam31/laravel-abuse-ip

Block ip address of all spammer's around the world.

27431.5k](/packages/rahulalam31-laravel-abuse-ip)[jsdecena/laravel-passport-multiauth

Simple laravel passport multiple user authentication

501.1k](/packages/jsdecena-laravel-passport-multiauth)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
