PHPackages                             benahmetcelik/laravel-crud - 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. benahmetcelik/laravel-crud

ActiveLibrary

benahmetcelik/laravel-crud
==========================

Laravel Crud Package

05PHP

Since Jan 14Pushed 3y ago1 watchersCompare

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

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

Laravel Crud
============

[](#laravel-crud)

[![Hits](https://camo.githubusercontent.com/f341b30aae6f24cc896be7dee02c9710a6fbdb48c63bac4638aea9f66ee51393/68747470733a2f2f686974732e736565796f756661726d2e636f6d2f6170692f636f756e742f696e63722f62616467652e7376673f75726c3d68747470732533412532462532466769746875622e636f6d25324662656e61686d657463656c696b2532466c61726176656c2d6372756426636f756e745f62673d253233373943383344267469746c655f62673d2532333535353535352669636f6e3d6c61726176656c2e7376672669636f6e5f636f6c6f723d253233453745374537267469746c653d5669657726656467655f666c61743d66616c7365)](https://hits.seeyoufarm.com)

### Description

[](#description)

This package was created to help you build a CRUD system

### Run Command On Your Terminal

[](#run-command-on-your-terminal)

```
   composer require benahmetcelik/laravel-crud
```

```
   php artisan vendor:publish --tag="crud-views"
```

### Examples

[](#examples)

Let's first consider creating a **Controller**

```
php artisan make:controller BlogController
```

Now we need to create a **model**

```
php artisan make:model Blog

php artisan make:model Category
```

Now let's go into our controller file and replace it with the following code

```
