项目作者: yu0307

项目描述 :
Laravel UI Framework
高级语言: JavaScript
项目地址: git://github.com/yu0307/LaraFrame.git
创建时间: 2019-07-31T18:19:42Z
项目社区:https://github.com/yu0307/LaraFrame

开源协议:Apache License 2.0

下载


Welcome to LaraFrame Repo!

A powerful, state of the art, framework for laravel application.
Documentation of this Framework, Please visit here

Enable user Role management, use Fe_Roles

Let’s collaborate!

Please send a email to me for bugs, feature suggestions,pull requests,etc… or even hang out :) yu0307@gmail.com

This package provides the following features:

  • Built-in UI framework for laravel application. Ideal for cloud system, admin control panel, CRM, general back-end interface and more.
  • Home page Widget support. Create custom widgets for users to choose at the front end.
  • List of stock widgets(weather,calendar,clock,etc) already built-in, instantly available for anyone who visits the home page.
  • Widget management. Re-arranging widgets at home page, add/remove widgets and change widget settings all at one place.
  • Built-in templates for profile page, user setting page, etc.
  • Built-in centralized control panel. Integrated with user management, role management, general settings, etc. Everything is added to the panel automatically.
  • Theme support. You can choose between themes like WordPress within the central control panel.
  • Extendable Themes. You can create your own theme/designs and apply to the framework. Everything integrates gracefully.
  • Revolutionary, BluePrints utility tool. Making building sites as easy as taking a survey.
  • Built-in laravel commands for building components. Automatically generates controllers, models, migrations, etc.
  • Extensive list of blade directives (forms, buttons,tables,etc) for fast interface development.
  • Built-in blade directives for common controls, take away the burden of writing repetitive codes.
  • Mobile responsive interface and menu design.
  • Built-in notification interface for users to view message/mails.
  • Menu Generator with support with icon, label, slug support.
  • Clean, elegant and modern design of front-end interface.

Dependencies:

Installation:

  1. Please make sure composer is installed on your machine. For installation of composer, please visit This Link
  2. Once composer is installed properly, please make sure Larave is up to date.
  3. Navigate to your project root directory
    1. composer require feiron/felaraframe
  4. This package is going to publish several files to the following path
  • config/felaraframe/
  • public/feiron/felaraframe/
  1. Important! This package is also going to perform several migrations. Please refer to the following changes and make backups of your tables if they are present.
  2. Since I can’t seem to have package auto publish assets. make sure you run the following command at the end and every updates of this package.

    1. php artisan vendor:publish --provider="feiron\felaraframe\FeLaraFrameServiceProvider" --force
    2. php artisan vendor:publish --provider="feiron\fe_login\Fe_LoginServiceProvider" --force
    3. php artisan migrate --path="/vendor/feiron/fe_login/src/database/migrations/"
    4. php artisan migrate --path="/vendor/feiron/felaraframe/src/database/migrations/"
    5. php artisan storage:link
    1. Schema to be Created/Modified:
    2. [lf_notes]:
    3. id bigint(20) UN AI PK
    4. subject varchar(220)
    5. notes text
    6. notable_id varchar(36)
    7. notable_type varchar(50)
    8. created_at timestamp
    9. updated_at timestamp
    10. ------------------------------------------
    11. [user_widget_layout]:
    12. id bigint(20) UN AI PK
    13. layoutable_id varchar(36)
    14. layoutable_type varchar(36)
    15. widget_name varchar(225)
    16. settings text
    17. order int(11)
    18. created_at timestamp
    19. updated_at timestamp
    20. ------------------------------------------
    21. [lf_mail]:
    22. id bigint(20) UN AI PK
    23. sender int(11)
    24. recipient int(11)
    25. subject varchar(220)
    26. contents text
    27. remarks varchar(191)
    28. created_at timestamp
    29. updated_at timestamp
    30. ------------------------------------------
    31. [lf_site_metainfo]:
    32. id bigint(20) UN AI PK
    33. meta_name varchar(225)
    34. meta_value text
    35. created_at timestamp
    36. updated_at timestamp

    Note: During migration, if you encounter error showing “Specified key was too long”
    This was due to MySQL version being older than 5.7.7, if you don’t wish to upgrade MySQL server, consider the following.

Within your AppServiceProvider

  1. ```
  2. use Illuminate\Support\Facades\Schema;
  3. /**
  4. * Bootstrap any application services.
  5. *
  6. * @return void
  7. */
  8. public function boot()
  9. {
  10. Schema::defaultStringLength(191);
  11. }
  12. ```

Further reading on this could be found at This Link

Basic Usage:

For details of how to use this framework. Please head over to the WiKi page of this Repo.
There are a lot of features packed into this package and I will be updating the WiKi Page frequently, please stay tuned.

Support us:

If you like this project, Please, please, please consider put a Star⭐️ and tweet about it.

I would love for any forms of supports and they are deeply appreciated👍! Thanks!

Notes:

  • This package does not come with user support nor with role management.
  • For these functions, please use Fe_Login and Fe_Roles which were specifically developed to work with this framework.