PHPackages                             tannhatcms/newscrud - 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. [Admin Panels](/categories/admin)
4. /
5. tannhatcms/newscrud

ActiveLibrary[Admin Panels](/categories/admin)

tannhatcms/newscrud
===================

An admin panel for news with categories and tags, using Backpack\\CRUD on Laravel 5.

5.1.2(1y ago)03[5 PRs](https://github.com/TanNhatCMS/Laravel-Backpack-NewsCRUD/pulls)proprietaryPHPCI passing

Since May 27Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/TanNhatCMS/Laravel-Backpack-NewsCRUD)[ Packagist](https://packagist.org/packages/tannhatcms/newscrud)[ Docs](https://github.com/Laravel-Backpack/NewsCRUD)[ RSS](/packages/tannhatcms-newscrud/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (5)Versions (45)Used By (0)

Backpack\\NewsCRUD
==================

[](#backpacknewscrud)

[![Latest Version on Packagist](https://camo.githubusercontent.com/762d1411c22c901de5d1de69986885d95756e75314762c6470f0632a54aef561/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6261636b7061636b2f4e657773435255442e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/backpack/NewsCRUD)[![Software License](https://camo.githubusercontent.com/5a202d5327ab4ae3bf5cc50fcfa3d2f0823d818a4f115a027d8176dcb996c4d4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d6475616c2d626c75653f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/59c9c931d488382b220c3001e5e6701144cb0f24726fdd04692a4e17f30ca012/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f636f6d2f6c61726176656c2d6261636b7061636b2f6e65777363727564)](https://travis-ci.org/Laravel-Backpack/NewsCRUD)[![Coverage Status](https://camo.githubusercontent.com/7e12d7a6654c4842df8c60d486b7ddbb44084f525e53903fa576b78ca9bb37e4/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f4c61726176656c2d4261636b7061636b2f4e657773435255442e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/Laravel-Backpack/NewsCRUD/code-structure)[![Quality Score](https://camo.githubusercontent.com/c8fc9961dad23f1b69771881ae95a922b7b79509ee1670cdc65e906bbbab2d67/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f4c61726176656c2d4261636b7061636b2f4e657773435255442e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/Laravel-Backpack/NewsCRUD)[![Total Downloads](https://camo.githubusercontent.com/7b5c51e8e647e00a99ce946c46a71bd9cc4d86191489c0f084e5cd3d9fea1f20/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6261636b7061636b2f4e657773435255442e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/backpack/NewsCRUD)

An admin panel for news articles on Laravel, using [Backpack\\CRUD](https://github.com/Laravel-Backpack/crud). Write articles, with categories and tags.

> ### Security updates and breaking changes
>
> [](#security-updates-and-breaking-changes)
>
> Please **[subscribe to the Backpack Newsletter](http://backpackforlaravel.com/newsletter)** so you can find out about any security updates, breaking changes or major features. We send an email every 1-2 months.

Requirements
------------

[](#requirements)

This package requires both `backpack/crud` but also `backpack/pro` (the paid addon). If you do NOT have access to `backpack/pro` you can [purchase it here](https://backpackforlaravel.com/pricing). Alternatively, you can use the installation method (A), then:

- remove all PRO features;
- replace PRO fields with FREE fields;

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

[](#installation)

Since NewsCRUD is just a Backpack\\CRUD example, you can choose to install it one of two ways.

**(A) Download and place files in your application** (recommended; remember to also `composer require cviebrock/eloquent-sluggable`)

or

**(B) As a package**

The only PRO of installing it as a package is that you may benefit from updates. But the reality is there is very little (if any) bug fixing to do, so you probably won't need to update it, ever.

#### Installation type (A) - download

[](#installation-type-a---download)

1. [Download the latest build](https://github.com/Laravel-Backpack/NewsCRUD/archive/master.zip).
2. Paste the 'app' and 'database' folders over your projects (merge them). No file overwrite warnings should come up.
3. Replace all mentions of 'Backpack\\NewsCRUD\\app' in the pasted files with your application's namespace ('App' if you haven't changed it):

- app/Http/Controllers/Admin/ArticleCrudController.php
- app/Http/Controllers/Admin/CategoryCrudController.php
- app/Http/Controllers/Admin/TagCrudController.php
- app/Http/Requests/ArticleRequest.php
- app/Http/Requests/CategoryRequest.php
- app/Http/Requests/TagRequest.php
- app/Models/Article.php
- app/Models/Category.php
- app/Models/Tag.php

4. Run the migration to have the database table we need:

```
php artisan migrate

```

5. Add NewsCRUD to your routes file:

```
Route::group(['prefix' => config('backpack.base.route_prefix', 'admin'), 'middleware' => ['web', 'auth'], 'namespace' => 'Admin'], function () {
    // Backpack\NewsCRUD
    Route::crud('article', 'ArticleCrudController');
    Route::crud('category', 'CategoryCrudController');
    Route::crud('tag', 'TagCrudController');
});

```

6. \[optional\] Add a menu item for it in resources/views/vendor/backpack/ui/inc/menu\_items.blade.php:

```

```

7. \[optional\] If you need the browse field to upload images, please install [Laravel-Backpack/FileManager](https://github.com/Laravel-Backpack/FileManager#installation).

#### Installation type (B) - package

[](#installation-type-b---package)

1. In your terminal, run:

```
composer require backpack/newscrud
```

2. Publish the migration:

```
php artisan vendor:publish --provider="Backpack\NewsCRUD\NewsCRUDServiceProvider"

```

3. Run the migration to have the database table we need:

```
php artisan migrate

```

4. \[optional\] Add a menu item for it in resources/views/vendor/backpack/ui/inc/menu\_items.blade.php:

```

```

5. \[optional\] If you need the browse field to upload images, please install [Laravel-Backpack/FileManager](https://github.com/Laravel-Backpack/FileManager#installation).

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Overwriting functionality
-------------------------

[](#overwriting-functionality)

If you need to modify how this works in a project:

- create a `routes/backpack/newscrud.php` file; the package will see that, and load *your* routes file, instead of the one in the package;
- create controllers/models that extend the ones in the package, and use those in your new routes file;
- modify anything you'd like in the new controllers/models;

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Please **[subscribe to the Backpack Newsletter](http://backpackforlaravel.com/newsletter)** so you can find out about any security updates, breaking changes or major features. We send an email every 1-2 months.

Credits
-------

[](#credits)

- [Cristian Tabacitu](https://github.com/tabacitu)
- [All Contributors](../../contributors)

License
-------

[](#license)

Backpack is free for non-commercial use and 49 EUR/project for commercial use. Please see [License File](LICENSE.md) and [backpackforlaravel.com](https://backpackforlaravel.com/#pricing) for more information.

Hire us
-------

[](#hire-us)

We've spend more than 10.000 hours creating, polishing and maintaining administration panels on Laravel. We've developed e-Commerce, e-Learning, ERPs, social networks, payment gateways and much more. We've worked on admin panels *so much*, that we've created one of the most popular software in its niche - just from making public what was repetitive in our projects.

If you are looking for a developer/team to help you build an admin panel on Laravel, look no further. You'll have a difficult time finding someone with more experience &amp; enthusiasm for this. This is *what we do*. [Contact us - let's see if we can work together](https://backpackforlaravel.com/need-freelancer-or-development-team).

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance77

Regular maintenance activity

Popularity3

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 82.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

Every ~87 days

Recently: every ~192 days

Total

38

Last Release

408d ago

Major Versions

1.0.3 → 2.0.02016-07-24

2.1.11 → 3.0.02019-09-24

v3.0.3 → 4.0.02020-05-06

v4.x-dev → v5.0.02023-07-01

### Community

Maintainers

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

---

Top Contributors

[![tabacitu](https://avatars.githubusercontent.com/u/1032474?v=4)](https://github.com/tabacitu "tabacitu (151 commits)")[![pxpm](https://avatars.githubusercontent.com/u/7188159?v=4)](https://github.com/pxpm "pxpm (10 commits)")[![promatik](https://avatars.githubusercontent.com/u/1838187?v=4)](https://github.com/promatik "promatik (4 commits)")[![StyleCIBot](https://avatars.githubusercontent.com/u/11048387?v=4)](https://github.com/StyleCIBot "StyleCIBot (3 commits)")[![mansourcodes](https://avatars.githubusercontent.com/u/3064487?v=4)](https://github.com/mansourcodes "mansourcodes (2 commits)")[![karandatwani92](https://avatars.githubusercontent.com/u/8214221?v=4)](https://github.com/karandatwani92 "karandatwani92 (2 commits)")[![vitr](https://avatars.githubusercontent.com/u/2770290?v=4)](https://github.com/vitr "vitr (2 commits)")[![TanNhatCMS](https://avatars.githubusercontent.com/u/113796420?v=4)](https://github.com/TanNhatCMS "TanNhatCMS (1 commits)")[![AbbyJanke](https://avatars.githubusercontent.com/u/487798?v=4)](https://github.com/AbbyJanke "AbbyJanke (1 commits)")[![yzi-afk](https://avatars.githubusercontent.com/u/30377205?v=4)](https://github.com/yzi-afk "yzi-afk (1 commits)")[![atanasov](https://avatars.githubusercontent.com/u/150792?v=4)](https://github.com/atanasov "atanasov (1 commits)")[![dependabot-preview[bot]](https://avatars.githubusercontent.com/in/2141?v=4)](https://github.com/dependabot-preview[bot] "dependabot-preview[bot] (1 commits)")[![eduardoarandah](https://avatars.githubusercontent.com/u/4065733?v=4)](https://github.com/eduardoarandah "eduardoarandah (1 commits)")[![jcastroa87](https://avatars.githubusercontent.com/u/44643608?v=4)](https://github.com/jcastroa87 "jcastroa87 (1 commits)")[![rasadeghnasab](https://avatars.githubusercontent.com/u/10284898?v=4)](https://github.com/rasadeghnasab "rasadeghnasab (1 commits)")[![sashaphmn](https://avatars.githubusercontent.com/u/122053040?v=4)](https://github.com/sashaphmn "sashaphmn (1 commits)")

---

Tags

backpackNewsCRUD

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/tannhatcms-newscrud/health.svg)

```
[![Health](https://phpackages.com/badges/tannhatcms-newscrud/health.svg)](https://phpackages.com/packages/tannhatcms-newscrud)
```

###  Alternatives

[backpack/crud

Quickly build admin interfaces using Laravel, Bootstrap and JavaScript.

3.4k3.4M206](/packages/backpack-crud)[backpack/newscrud

An admin panel for news with categories and tags, using Backpack\\CRUD on Laravel 5.

236159.6k1](/packages/backpack-newscrud)[backpack/pagemanager

Create admin panels for presentation websites on Laravel, using page templates and Backpack\\CRUD.

371522.6k6](/packages/backpack-pagemanager)[backpack/backupmanager

Admin interface for managing backups in Backpack, on Laravel 5.2+

340375.9k2](/packages/backpack-backupmanager)[backpack/menucrud

An admin panel for menu items, using Backpack\\CRUD on Laravel 6.

198258.5k1](/packages/backpack-menucrud)[backpack/langfilemanager

An interface to edit language files, for Laravel Backpack.

91230.1k1](/packages/backpack-langfilemanager)

PHPackages © 2026

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