承接 unrulynatives/helpers 相关项目开发

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

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

unrulynatives/helpers

Composer 安装命令:

composer require unrulynatives/helpers

包简介

Snippets, tools, views for Laravel 5.4 app

README 文档

README

A set of code snippets and functions to use across all projects.

This package contains some modifications made over a fresh installation of Laravel >= 5.3.

With time, this package would contain all modifications of the bare Laravel app. In other words, as soon as you include this package in your composer.json, you will get fully working starter kit.

Current version: Latest Stable Version

Features

Installation

  1. Add "unrulynatives/helpers": "^1.0" to your composer.json file.

  2. Add this to your config/app.php file in packages section Unrulynatives\Helpers\HelpersServiceProvider::class,

  3. Publish views, css & jQuery files to your app:

php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --force

Should you wish to publish to app folder only selected resources, use these commands:

  • public assets (js, css) php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=publicassets --force

  • app files: Controllers, route files, Models php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=app --force

  • app files: View files php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=views --force

WARNING:

  • app files: View files to be copied to resources/views/layouts/ folder php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=viewslayouts --force

  • migration files php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=migrations --force

  • seed files php artisan vendor:publish --provider="Unrulynatives\Helpers\HelpersServiceProvider" --tag=seeds --force

  1. Register the package in your User model and wherever you see it is necessary - see features section.

In your User model: `use Unrulynatives\Helpers\UserExtensions;

class User extends Authenticatable {

use UserExtensions;`

  1. Register trait in other models In your model file declare: `use Unrulynatives\Helpers\ModelExtensions;

class [your-model-name-goes-here] extends Authenticatable {

use ModelExtensions;`

  1. You need to register the routes defined in this package. Open \app\Providers\RouteServiceProvider.php and
  • add $this->mapUnstarterRoutes(); to the map() function and
  • add the below code at the bottom of mapWebRoutes() fucntion:
    protected function mapUnstarterRoutes()
    {
        Route::group([
            'middleware' => 'web',
            'namespace' => $this->namespace,
        ], function ($router) {
            require base_path('unstarter/routes/unstarter.php');
        });
    }

Done!

Now you can check if the package works. Point your browser to unrulyhelpers. You should see a clock - an example developed along Laraveldaily tutorial http://laraveldaily.com/how-to-create-a-laravel-5-package-in-10-easy-steps/

To do (Future features)

Example usage

  1. To get Gravatar assigned to authenticated user's e-mail use <img src="{{Auth::user()->gravatar}}">

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: Unknown
  • 更新时间: 2016-06-07

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固