2017 © Pedro Peláez
 

library rocket-laravel-framework

RocketFramework Laravel Helpers

image

ianrothmann/rocket-laravel-framework

RocketFramework Laravel Helpers

  • Monday, March 26, 2018
  • by ianrothmann
  • Repository
  • 1 Watchers
  • 0 Stars
  • 132 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 10 Versions
  • 15 % Grown

The README.md

RocketLaravelAppFramework

RocketFramework for Vue Laravel Helpers., (*1)

Installation

composer install ianrothmann/rocket-laravel-framework

In config/app.php, (*2)

Service provider, (*3)

IanRothmann\RocketLaravelAppFramework\ServiceProviders\RocketAppServiceProvider::class

Facades, (*4)

'Rocket' =>IanRothmann\RocketLaravelAppFramework\Facades\Rocket::class

Publish the config, (*5)

php artisan vendor:publish --provider="IanRothmann\RocketLaravelAppFramework\ServiceProviders\RocketAppServiceProvider"  --tag="config"

Menus can be specified in middleware, but can also be modified in any controller before passing the view., (*6)

Usage

You can give the menu a name, for instance "main", and then chain the items. The icon is optional. If you need a custom item, you can use ->custom, (*7)

Rocket::menu('main')
        ->route(label,routeName,paramsArray,icon,userRightOrClosureReturningBool)
        ->route('Change Password','password.change',[],'person','user_edit')
        ->link(name,url,icon,userRightOrClosureReturningBool) 
        ->custom(RocketMenu::item("Google")->link("http://google.com")->hint('Go to Google')->icon('delete')->id('google')->target('_blank')->right(userRightOrClosureReturningBool));

Groups are also possible. Specify ->group. This returns the item. Then specify ->subMenu(), and now you can chain the items to the submenu. You need to start with Rocket::menu('main') again to add main menu items., (*8)

 Rocket::menu('main')
            ->group('Rocket CRUD')
            ->subMenu()
            ->route('CRUD Table','rocket.crud.table');

 Rocket::menu('main')->route('Home','home',[]);

Prepending

Sometimes one would like to prepend items (especially when modifying middleware defined menus from the controller. All item functions can start with push to prepend., (*9)

   Rocket::menu('main')->pushRoute('Home','home',[]); //pushLink, pushGroup, pushCustom etc.

Front-end

This package integrates with VueBridge and makes the menu available in $store.state.server.rocketMenus, for use with rocket-framework-menu in RocketVueAppFramework:, (*10)

<rocket-framework-menu :menu="$store.state.server.rocketMenus&&$store.state.server.rocketMenus.main"></rocket-framework-menu>

Use Rocket::breadcrumbs(), to access the BreadcrumbsService:, (*11)

You may either use:, (*12)

@include('rocket::breadcrumbsmenu')

to show a menu icon with the items in a menu, (*13)

or, (*14)

@include('rocket::breadcrumbs')

To display a classic breadcrumbs bar. Everything is only implemented in Vuetify. You cannot use both, be sure to only use one of them on a page., (*15)

in config/rocketframework.php, you may set, (*16)

'breadcrumbs' => [
        'number'=>4, //Number of breadcrumbs to save
        'default'=>'show' //Default behaviour to show or hide breadcrumbs
    ]

On any page you may call: Rocket::breadcrumbs()->show() or Rocket::breadcrumbs()->hide() to bread away from the default behaviour. You can also set a namespace for the breadcrumbs to limit them on certain parts/sessions on the system. For instance: Rocket::breadcrumbs()->setBreadcrumbsNamespace($clientid), (*17)

Edit in place language

This enables you to use blade syntax @editabletext(language_line_code) or @editablehtml(language_line_code). If edit mode is active, a user will be able to edit the text in place. This is useful for public facing websites etc., (*18)

  • Use Rocket::activateLanguageEdit() or Rocket::deactivateLanguageEdit() to enter edit mode.
  • There are language configurations in app/config/rocketframework.php - mostly for the update routing. The defaults should do in most cases. - but remember the middleware for route protection. The default is [], but is should have auth and rights.
  • It used the spatie/laravel-translation-loader package to store it in a language_lines table, make sure the table exists - for more info look at their readme. You have to install the package in the project and override the service providers as in their readme.

The Versions

26/03 2018

dev-master

9999999-dev

RocketFramework Laravel Helpers

  Sources   Download

Apache-2.0 Apache2

The Requires

 

by Ian Rothmann

26/03 2018

0.3.0

0.3.0.0

RocketFramework Laravel Helpers

  Sources   Download

Apache-2.0

The Requires

 

by Ian Rothmann

12/11 2017

0.2.4

0.2.4.0

RocketFramework Laravel Helpers

  Sources   Download

Apache2

The Requires

 

by Ian Rothmann

09/11 2017

0.2.3

0.2.3.0

RocketFramework Laravel Helpers

  Sources   Download

Apache2

The Requires

 

by Ian Rothmann

21/09 2017

0.2.2

0.2.2.0

RocketFramework Laravel Helpers

  Sources   Download

Apache2

The Requires

 

by Ian Rothmann

03/09 2017

0.2.1

0.2.1.0

RocketFramework Laravel Helpers

  Sources   Download

Apache2

The Requires

 

by Ian Rothmann

03/09 2017

0.2.0

0.2.0.0

RocketFramework Laravel Helpers

  Sources   Download

Apache2

The Requires

 

by Ian Rothmann

02/09 2017

0.1.2

0.1.2.0

RocketFramework Laravel Helpers

  Sources   Download

Apache2

The Requires

 

by Ian Rothmann

31/07 2017

0.1.1

0.1.1.0

RocketFramework Laravel Helpers

  Sources   Download

Apache2

The Requires

 

by Ian Rothmann

29/07 2017

0.1.0

0.1.0.0

RocketFramework Laravel Helpers

  Sources   Download

Apache2

The Requires

 

by Ian Rothmann