承接 distilleries/integration 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

distilleries/integration

Composer 安装命令:

composer require distilleries/integration

包简介

Tool to have a dashboard of component of the app.

README 文档

README

Total Downloads Latest Stable Version License

Integration

Integration is package to work with frontend developer.

Table of contents

Installation

Auto detect package has been set on this release.

Add on your composer.json

    "require": {
        "distilleries/integration": "1.*",
    }

run composer update.

Add Service provider to config/app.php:

(or auto-loaded if Laravel >= 5.7)

    'providers' => [
        //
        // Package Service Providers...
        //
        Distilleries\Integration\IntegrationServiceProvider::class,
    ]

Configurations

    return [
        'path_partial_component' => resource_path('views/frontend/integration/components/partials'),
        'controller' => '\Distilleries\Integration\Http\Controllers\Frontend\IntegrationController@getComponentDetail',
        'prefix_uri' => 'integration',
        'disabled' => false,
        'pages' => [
            [
                'name' => 'Page FAQ Example',
                'slug' => 'faq',
                'status' => 'done', //done,in_progress,todo
                'view' => 'integration::frontend.integration.pages.faq',
            ],
        ],
    ];
Field Usage
path_partial_component Path where to load partial component
controller Controller and methode use to get detail iframe
prefix_uri Uri prefix for integration route
disabled Disable the integration generation
pages Table of static page

Usage

    @component('frontend.components.forms.buttons',transform('Forms\ButtonsTransformer', [
        'type' => 'submit',
        'background' => '',
        'border' => 'border-enabled',
        'text_color' => 'text-grey',
        'size' => 'small',
    ]))
        @slot('label')
            EDIT
        @endslot
    @endcomponent

统计信息

  • 总下载量: 1.27k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 1
  • 开发语言: HTML

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-07-11