This is a Laravel 4-5 package for working with trees in relational databases. Laravel 5.5, 5.6, 5.7, 5.8 is supported since v4.3 Laravel 5.2, 5.3, 5.4 is supported since v4 Laravel 5.1 is supported in v3 Laravel 4 is supported in v2 Although this pro…
Npm by default uses global values when initializing a new package.json file. Learn how to set your own global default values by command line or editing the ~/.npmrc file.   npm set init.author.email "xxx@gmail.com" npm set init.author.name "…
服务容器,也叫IOC容器,其实包含了依赖注入(DI)和控制反转(IOC)两部分,是laravel的真正核心.其他的各种功能模块比如 Route(路由).Eloquent ORM(数据库 ORM 组件).Request and Response(请求和响应)等等等等,实际上都是与核心无关的类模块提供的,这些类从注册到实例化,最终被你所使用,其实都是 laravel 的服务容器负责的.服务容器这个概念比较难解释清楚,只能一步步从服务容器的产生历史慢慢解释 IoC 容器诞生的故事——石器时代(原始模式…
:first-child{margin-top:0!important}img.plugin{box-shadow:0 1px 3px rgba(0,0,0,.1);border-radius:3px}iframe{border:0}figure{-webkit-margin-before:0;-webkit-margin-after:0;-webkit-margin-start:0;-webkit-margin-end:0}kbd{border:1px solid #aaa;-moz-bord…
如果没有使用过类似Yii之类的框架,直接去看laravel,会有点一脸迷糊的感觉,起码我是这样的.laravel的启动过程,也是laravel的核心,对这个过程有一个了解,有助于得心应手的使用框架,希望能对大家有点帮助.提示:在此之前,最好看一下官方文档,大概知道laravel,再来看这个笔记,这样效果可能会好一点. 统一入口 laravel框架使用了统一入口,入口文件:/public/index.php <?php //自动加载文件设置 require __DIR__.'/../bootstr…
1. 继承.片段.占位.组件.插槽 1.1 继承 1.定义父模板 Laravel/resources/views/base.blade.php 2.子模板继承 @extends('base') 1.2 片段 1.父模板定义片段 @section('part') // 中间内容即使是一个片段 @show 2.子模板填充片段 @section('part') // 片段填充内容(后台的表单.列表等) @endsection 1.3 占位 1.父模板占位 @yield('title') 2.子模板填充…
laravel的启动过程,也是laravel的核心,对这个过程有一个了解,有助于得心应手的使用框架,希望能对大家有点帮助. 统一入口 laravel框架使用了统一入口,入口文件:/public/index.php <?php //自动加载文件设置 require __DIR__.'/../bootstrap/autoload.php'; //初始化服务容器(可以查看一下关于‘服务容器’的相关文档) $app = require_once __DIR__.'/../bootstrap/app.ph…
TDD: 测试驱动开发(Test-Driven Development),TDD的原理是在开发功能代码之前,先编写单元测试用例代码,测试代码确定需要编写什么产品代码. -- 载自TDD百度百科 参考 Test Driven API Development using Laravel, Dingo and JWT with Documentation 更正运行命令: php artisan vendor:publish --provider="Dingo\Api\Provider\LaravelS…
报错: The layout "activity_main" in layout has no declaration in the base layout folder; this can lead to crashes when the resource is queried in a configuration that does not match this qualifier. 详情:If a resource is only defined in folders with…
那么先到官方找到框架,然后安装下 composer安装的,composer怎么安装的 我就不说了 前置条件: PHP >= OpenSSL PHP Extension PDO PHP Extension Mbstring PHP Extension Tokenizer PHP Extension XML PHP Extension Ctype PHP Extension JSON PHP Extension 1 安装 composer global require "laravel/ins…