l5b-crud icon indicating copy to clipboard operation
l5b-crud copied to clipboard

CRUD artisan command for rappasoft/laravel-5-boilerplate

Results 12 l5b-crud issues
Sort by recently updated
recently updated
newest added

Not working with Laravel 8, and not even with 'rappasoft/laravel-boilerplate' . Too bad. It looks so much valuable for me.

This branch enables support for the Laravel 6 version of boilerplate for both the frontend and backend scaffolds. It also includes some typo fixes on various items (although it does...

Looking at Timezone support for displaying back the date created etc it seems it is not consistently done. For example show.blade.php has timezone support using timezone()->convertToLocal() ``` @lang('backend_members.tabs.content.overview.created_at'): {{ timezone()->convertToLocal($member->created_at)...

Hi, i recently discovered that the folder structure in repositories is not aligned. When generating a new CRUD, in the Frontend folder for every new CRUD will be generated a...

Any plan to upgrade this to support the up coming Laravel 6.0?

In edit section of generated model breadcrumb, instead of 'backend_modelName', a dot(.) was generated.

My model is named Genre. The events wind up referring to the plural: `$this->genres = $genres;` but the GenreEventListener uses the singular `$newitem = $event->genre->name;` This causes an error. Changing...

... to use the right label for the 'edit' breadcrumb. Replace dot with underscore.

For me it would be great if I could generate models and add some organization to the folders So I would have: - Models/ - Course/ - Course.php - Slidedeck.php...

I used below command to generate a new CRUD base on the Example. **php artisan l5b:crud Staff -m** I then try to access the new CRUD using below **http://l5b.test/admin/staff** and...