Download the PHP package timmcleod/laravel-view-model without Composer

On this page you can find all versions of the php package timmcleod/laravel-view-model. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-view-model

View Models for Laravel

Clean up messy views using View Models

This package can be used to help you encapsulate, validate, and manipulate the data that is required by each of the views in your Laravel 5.x applications.

Purpose and Overview

As the views in our applications grow more complex, they tend to require more data that needs to be presented in varying ways. As our view dependencies increase and the view files become more complex, it can be increasingly difficult to keep track of the data that is required by the view.

View Models help by:

Installation

Require this package with composer:

Then, register the following service providers in your app config (project/config/app.php) by adding them to the providers array:

Getting Started

After you have registered the ViewModelServiceProvider, a new Artisan command will be available to generate your view models. To create a new view model, use the make:view-model Artisan command:

This command will place a new EditProfileViewModel class within your app/Http/ViewModels directory. If the directory doesn't exist, it will be created for you.

If you prefer to subgroup your view models, you can generate them this way:

This command will place a new EditProfileViewModel class within your app/Http/ViewModels/User directory.

Basic Usage

To use view models, just create a new instance of a view model and pass the instance into the view.

When the new view model is instantiated, the data is validated using the rules defined in your view model class. You can use any of the available validation rules defined in Laravel documentation.

Three additional rules are also available: instance_of, collection_of, and paginator_of.

If any of the data coming from the controller fails validation, an exception is thrown.

Within your views, you can access the data in your view model like this: $vm->timezones.

You can also add your own methods to your view model to keep your view-specific logic bundled nicely with the data to keep your views clean.

Or maybe you want to create a list of checkboxes for cities in 2 separate columns in this particular view. You could do something like this:

As you can see, View Models allow us to bundle the view data with the methods required to manipulate the data in the context of the view.

License

View Models for Laravel is open-sourced software licensed under the MIT license.

Laravel is a trademark of Taylor Otwell.


All versions of laravel-view-model with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
illuminate/validation Version ~5.2
timmcleod/laravel-instance-validator Version ~1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package timmcleod/laravel-view-model contains the following files

Loading the files please wait ....