2017 © Pedro Peláez
 

project vueadminlte

Laravel Enso is a solid start for any Laravel Based project

image

laravel-enso/vueadminlte

Laravel Enso is a solid start for any Laravel Based project

  • Thursday, February 15, 2018
  • by aocneanu
  • Repository
  • 2 Watchers
  • 3 Stars
  • 548 Installations
  • Vue
  • 12 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 65 Versions
  • 2 % Grown

The README.md

Vue Admin LTE

Codacy Badge StyleCI License Total Downloads Latest Stable Version , (*1)

Admin LTE Vueified for Laravel Enso, (*2)

Features

  • Addresses - polymorphic addresses functionality
  • Box
  • BoxWidget
  • Breadcrumbs - uses is included in the Page component and automatically generates the breadcrumbs
  • InfoBox
  • Notifications - is the notifications menu, used in the header
  • Overlay - is a spinner overlay used to indicate the loading state
  • Page - is the container for the page contents
  • RoAddresses - an extension for addresses with Romanian-specific formatting
  • SmallBox
  • Tabs
  • UserMenu - is the user menu, used in the header
  • UserWidget
  • VueFilter - additional filters for DataTable

Addresses

Takes the following parameters: type - string, the addressable model alias you set in the config | required - id - number, the id of the addressable model | required - theme - string, the class used for setting the styling of the box. Defaults to primary. - solid - boolean, a flag for showing a solid type of a box. Defaults to false. - open - boolean, a flag for the starting style (open/closed) of the box. Defaults to true. - title - string, the text for the box title. Defaults to null., (*3)

Box

Takes the following parameters: - theme - string, the class used for setting the styling of the box. - border, boolean, a flag for showing a border arount the component. Defaults to false. - solid - boolean, a flag for showing a solid type of a box. Defaults to false. - open - boolean, a flag for the starting style (open/closed) of the box. Defaults to true. - footer - string, a flag for displaying the footer. Defaults to false. - icon - string, the class for the icon of the box. Defaults to null. - title - string, the text for the box title. Defaults to null. - search - boolean, a flag for displaying the search input. Defaults to false. - badge - number, the number to be displayed in a badge, in the box header. Defaults to null. - refresh - boolean, a flag for showing the refresh control. Defaults to false. - collapsible - boolean, a flag for showing the minimization control. Defaults to false. - removable - boolean, a flag for showing the close control. Defaults to false. - overlay - boolean, a flag for displaying the loading overlay (spinner). Defaults to false. - bodyStyle - object, an object for styling the body. Defaults to {}., (*4)

  • takes no parameters.
  • uses the global Store object and the given breadcrumbs to automatically generate breadcrumbs for the current page.
  • is included in the Page component but can be used standalone if needed, as long as it has access to the Store.

HowToVideos

Takes the following parameters: - video, object, contains the information to display a video | required - tagList, object, contains the list of all available tags | required, (*5)

Note that this component has not been designed to be reused outside of the HowToVideos menu/page., (*6)

Info Box

Takes the following parameters: - theme - string, the class used for setting the styling of the box. Required. - icon - string, the class for the icon of the box. Defaults to null. - text - string, the text shown in the box. Defaults to null. - number, string, the text shown in the box. Defaults to null. - progress - string, progress percentage. Defaults to false. - description - string, the description shown for the progress. Defaults to false., (*7)

Notifications

Takes the following parameters: - user-id - number, the id of the user for whom the notifications are loaded. Required. - paginate - number, the # of items on one page, shown or loaded. Defaults to 6., (*8)

Overlay

Takes the following parameters: - line-fg-Color - string, the color for the foreground of the spinner. Defaults to #41b883. - line-bg-Color - string, the color for the background of the spinner. Defaults to transparent. - speed - number, the speed of the spinner. Defaults to 1. - size - string, the size of the spinner. Defaults to medium., (*9)

Page

Takes the following parameters: - custom-render - function, the method for handling custom rendering. Defaults to null., (*10)

Romanian Addresses

Takes the same parameters as Addresses - see above., (*11)

Small Box

Takes the following parameters: - theme - string, the class used for setting the styling of the box. - icon - string, the class for the icon of the box. Defaults to null. - title - string, the text for the box title. Defaults to null. - body, string, text shown as body. Defaults to null. - overlay - boolean, a flag for displaying the loading overlay (spinner). Defaults to false., (*12)

Tabs

Takes the following parameters: - tabs - array, array of strings / objects used for rendering the tabs and their slots. Required. - title - string, the text for the box title. Defaults to null. - reverse - boolean, flag for reversing the tab list. Defaults to false. - active, number, the index of the active tab. Defaults to 0. - icon - string, the class for the icon of the box. Defaults to null., (*13)

User Menu

Takes no parameters, uses the global Store variable, (*14)

User Widget

  • theme - string, the class used for setting the styling. Required.
  • background - string, the class used for setting the background.
  • avatar - string, the url for the location of the avatar picture.
  • name - string, the name of the user displayed. Defaults to null.
  • position - string, the position of the user. Defaults to null.
  • items - array, list of items to be displayed. Each item must be an object with value and label properties. Defaults to empty array.
  • overlay - boolean, a flag for displaying the loading overlay (spinner). Defaults to false.

Vue Filter

Takes the following parameters: - title - string, the text for the box title. Defaults to null. - theme - string, the class used for setting the styling of the box. Defaults to primary. - options - array, the list of options to display. Defaults to empty array - value - anything, the default, starting value | required - offSwitch - boolean, flag that determines if an off switch is rendered. Defaults to true, (*15)

To use it include it in the page:, (*16)

<vue-filter
        title="Taxes Paid"
        v-model="filters.orders.paid_taxes"
        :options="vueFilterOptions">
</vue-filter>

where the vueFilterOptions and filters may be something like:, (*17)

vueFilterOptions: [
    {value:true, label:"Yes"},
    {value:false, label:"No"}
],
filters: {
    orders: {                
        paid_taxes: '',                
    }
},

Next, when defining your DataTable, make sure you give it your filters:, (*18)

<data-table 
    source="orders" 
    :extra-filters="filters" 
    id="index-orders-id">
</data-table>

Note that you may use more than one such filter, just bind it inside the same encompassing filters object and it will get passed to the datatables BE logic., (*19)

Contributions

are welcome. Pull requests are great, but issues are good too., (*20)

License

This package is released under the MIT license. , (*21)

The Versions

15/02 2018

dev-master

9999999-dev https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

15/02 2018

1.3.52

1.3.52.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

12/02 2018

1.3.51

1.3.51.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

31/01 2018

1.3.50

1.3.50.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

30/01 2018

1.3.49

1.3.49.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

18/01 2018

1.3.48

1.3.48.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

15/01 2018

1.3.47

1.3.47.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

10/01 2018

1.3.46

1.3.46.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

10/01 2018

1.3.45

1.3.45.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

08/01 2018

1.3.44

1.3.44.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

08/01 2018

1.3.43

1.3.43.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

20/12 2017

1.3.42

1.3.42.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

18/12 2017

1.3.41

1.3.41.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

14/12 2017

1.3.40

1.3.40.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

13/12 2017

1.3.39

1.3.39.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

10/12 2017

1.3.38

1.3.38.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

08/12 2017

1.3.37

1.3.37.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

08/12 2017

1.3.36

1.3.36.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

07/12 2017

1.3.35

1.3.35.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

06/12 2017

1.3.34

1.3.34.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

06/12 2017

1.3.33

1.3.33.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

06/11 2017

1.3.32

1.3.32.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

06/11 2017

1.3.31

1.3.31.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

04/11 2017

1.3.30

1.3.30.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

04/11 2017

1.3.29

1.3.29.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

04/11 2017

1.3.28

1.3.28.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

03/11 2017

1.3.27

1.3.27.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

01/11 2017

1.3.26

1.3.26.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

29/10 2017

1.3.25

1.3.25.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

28/10 2017

1.3.24

1.3.24.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

26/10 2017

1.3.23

1.3.23.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

25/10 2017

1.3.22

1.3.22.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

25/10 2017

1.3.21

1.3.21.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

23/10 2017

1.3.20

1.3.20.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

23/10 2017

1.3.19

1.3.19.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

21/10 2017

1.3.18

1.3.18.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

20/10 2017

1.3.17

1.3.17.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

20/10 2017

1.3.16

1.3.16.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

19/10 2017

1.3.15

1.3.15.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

15/10 2017

1.3.14

1.3.14.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

15/10 2017

1.3.13

1.3.13.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

14/10 2017

1.3.12

1.3.12.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

14/10 2017

1.3.11

1.3.11.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

14/10 2017

1.3.10

1.3.10.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

14/10 2017

1.3.9

1.3.9.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

14/10 2017

1.3.8

1.3.8.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

14/10 2017

1.3.7

1.3.7.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

14/10 2017

1.3.6

1.3.6.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

10/10 2017

1.3.5

1.3.5.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

09/10 2017

1.3.4

1.3.4.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

26/09 2017

1.3.3

1.3.3.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

25/09 2017

1.3.2

1.3.2.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

21/09 2017

1.3.1

1.3.1.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

20/09 2017

1.3.0

1.3.0.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

01/09 2017

1.0.9

1.0.9.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

22/08 2017

1.0.8

1.0.8.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

19/08 2017

1.0.7

1.0.7.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

19/08 2017

1.0.6

1.0.6.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

15/08 2017

1.0.5

1.0.5.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

15/08 2017

1.0.4

1.0.4.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

13/08 2017

1.0.3

1.0.3.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

11/08 2017

1.0.2

1.0.2.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

04/08 2017

1.0.1

1.0.1.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte

04/08 2017

1.0.0

1.0.0.0 https://github.com/laravel-enso/VueAdminLTE

Admin LTE Vuefied

  Sources   Download

MIT

The Requires

 

adminlte admin-lte laravel-enso vue-admin-lte