Learning LaravelHandling 3 Versions 3 Examples 4 Welcome to Laravel tag documentation! 4 Starter Guide 4 Getting Started 4 Laravel Views 5 Chapter 2: Artisan 6 Syntax 6 Parameters 6 Examples 8 Introduction 8 List commands using PHP code 9 Creating and registering new artisan command 9 Chapter 3: Authentication 10 Examples 10 Multi Authentication 10 Chapter 4: Authorization 14 Introduction 14 Examples 14 Using Gates Policies 15 Authorizing Actions with Policies 15 Chapter 5: Blade Templates 17 Introduction 17 Examples 17 Views: Introduction 17 Control Structures 18 Conditionals 18 'If' statements 18 'Unless'0 码力 | 216 页 | 1.58 MB | 1 年前3
CakePHP Cookbook 2.x
performance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 650 12 Tutorials & Examples 651 Blog Tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 691 Code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . increase productivity and make coding more enjoyable: we hope you’ll see this as you dive into the code. This tutorial will walk you through the creation of a simple blog application. We’ll be getting0 码力 | 820 页 | 2.52 MB | 1 年前3
CakePHP Cookbook 4.x
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 64 4 Tutorials & Examples 69 Content Management Tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 Code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . foreach ($resultset as $row) { echo $row->username; } You may notice that we didn’t have to write any code before we could start working with our data. By using conventions, CakePHP will use standard classes0 码力 | 967 页 | 2.88 MB | 1 年前3
CakePHP Cookbook 3.x
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74 4 Tutorials & Examples 109 Content Management Tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191 Code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . foreach ($query as $row) { echo $row->username; } You may notice that we didn’t have to write any code before we could start working with our data. By using conventions, CakePHP will use standard classes0 码力 | 967 页 | 2.80 MB | 1 年前3
CakePHP Cookbook 2.x
Routing in shells / CLI Shell API More topics Shell Helpers Running Shells as cronjobs Completion Shell Code Generation with Bake Schema management and migrations I18N shell ACL Shell Test shell Upgrade shell your security Set document root Update core.php Improve your application’s performance Tutorials & Examples Blog Tutorial Getting CakePHP Creating the Blog Database CakePHP Database Configuration Optional Routes Conclusion Simple Authentication and Authorization Application Creating all users’ related code Authentication (login and logout) Authorization (who’s allowed to access what) Simple Acl controlled0 码力 | 1096 页 | 958.62 KB | 1 年前3
CakePHP Cookbook Documentation 5.x. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 4 Tutorials & Examples 45 Content Management Tutorial . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 Code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . foreach ($resultset as $row) { echo $row->username; } You may notice that we didn’t have to write any code before we could start working with our data. By using conventions, CakePHP will use standard classes0 码力 | 848 页 | 2.53 MB | 1 年前3
CakePHP Cookbook Documentation 5.xxml adjustments ->withConsecutive() has been removed data providers have to be static Tutorials & Examples Content Management Tutorial Getting CakePHP Checking our Installation CMS Tutorial - Creating Documentation Translations Documentation Formatting Guide Tickets Reporting Bugs Reporting Security Issues Code Initial Setup Working on a Patch Submitting a Pull Request Coding Standards Adding New Features Control Structures Comparison Function Calls Method Definition Bail Early Method Chaining Commenting Code Including Files PHP Tags Naming Convention Careful when using empty()/isset() Backwards Compatibility0 码力 | 1080 页 | 939.39 KB | 1 年前3
CakePHP Cookbook 3.x
3.1 Migration Guide 3.0 Migration Guide 3.0 Migration Guide New ORM Upgrade Guide Tutorials & Examples Content Management Tutorial Getting CakePHP Checking our Installation CMS Tutorial - Creating Documentation Translations Documentation Formatting Guide Tickets Reporting Bugs Reporting Security Issues Code Initial Setup Working on a Patch Submitting a Pull Request Coding Standards Adding New Features Control Structures Comparison Function Calls Method Definition Bail Early Method Chaining Commenting Code Including Files PHP Tags Naming Convention Careful when using empty()/isset() Backwards Compatibility0 码力 | 1244 页 | 1.05 MB | 1 年前3
CakePHP Cookbook 4.x
Changes New Features 4.5 Migration Guide Upgrading to 4.5.0 Deprecations New Features Tutorials & Examples Content Management Tutorial Getting CakePHP Checking our Installation CMS Tutorial - Creating Documentation Translations Documentation Formatting Guide Tickets Reporting Bugs Reporting Security Issues Code Initial Setup Working on a Patch Submitting a Pull Request Coding Standards Adding New Features Control Structures Comparison Function Calls Method Definition Bail Early Method Chaining Commenting Code Including Files PHP Tags Naming Convention Careful when using empty()/isset() Backwards Compatibility0 码力 | 1249 页 | 1.04 MB | 1 年前3
Laravel 5.0 Documentation
the major changes: The old app/models directory has been entirely removed. Instead, all of your code lives directly within the app folder, and, by default, is organized to the App namespace. This application. This would include controllers, routes, Eloquent models, Artisan commands, assets, and other code specific to your application. To start, install a new Laravel 5 application into a fresh directory to copy any additional Composer dependencies into your 5.0 application. This includes third-party code such as SDKs. Some Laravel-specific packages may not be compatible with Laravel 5 on initial release0 码力 | 242 页 | 1.44 MB | 1 年前3
共 84 条
- 1
- 2
- 3
- 4
- 5
- 6
- 9













