PHPackages                             gilles-hemmerle/symfony-crud-adminlte - 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. gilles-hemmerle/symfony-crud-adminlte

ActiveProject[Admin Panels](/categories/admin)

gilles-hemmerle/symfony-crud-adminlte
=====================================

Projet Symfony implémentant un CRUD avec le template AdminLTE

0.0.2(9y ago)077MITPHP &gt;=5.3.9

Since Dec 12Compare

[ Source](https://github.com/gilles-hemmerle/symfony-crud-adminlte)[ Packagist](https://packagist.org/packages/gilles-hemmerle/symfony-crud-adminlte)[ RSS](/packages/gilles-hemmerle-symfony-crud-adminlte/feed)WikiDiscussions Synced yesterday

READMEChangelog (3)Dependencies (13)Versions (3)Used By (0)

Create a Symfony CRUD application with AdminLTE template
========================================================

[](#create-a-symfony-crud-application-with-adminlte-template)

This repository allows you to create a fresh new install of symfony including some bundles to start developping a CRUD application based on the AdminLTE template.

The list of bundles added to the project are the following :

- SensioFrameworkExtraBundle,
- FOSUserBundle,
- AsseticBundle,
- AvanzuAdminThemeBundle,

Start a project
---------------

[](#start-a-project)

Run the following command and you'll be able to run your initial symfony project

```
composer create-project --prefer-dist --stability=dev gilles-hemmerle/symfony-crud-adminlte:master myApp
cd myApp
php app/console doctrine:schema:update --force
```

Then create a user to test the project

```
php app/console fos:user:create user1
php app/console fos:user:promote user1 ROLE_ADMIN
```

And run the server

```
php app/console server:start
```

Create a CRUD application (exemple)
-----------------------------------

[](#create-a-crud-application-exemple)

Let's create an article and a tag CRUD

### First, Create the two entities

[](#first-create-the-two-entities)

- Create the Article entity

```
    
