Download the PHP package haganjones/laravel-viewables without Composer

On this page you can find all versions of the php package haganjones/laravel-viewables. 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-viewables

Laravel Viewables

Like Laravel's Mailables, Viewables allow you to take a class based approach to working with and handling your views in Laravel.

Install via Composer

Include Service Provider

In config/app.php add the below to your service providers array:

Writing Viewables

All of a viewable class' configuration is done in the build method. Within this method, you may call various methods such as view and with to render and pass data to the view.

Configuring The View

Within a viewable class' build method, you may use the view method to specify which template should be used when rendering the view:

View Data

Via Public Properties

Typically, you will want to pass some data to your view that you can utilize when rendering the view's HTML. There are two ways you may make data available to your view. First, any public property defined on your viewable class will automatically be made available to the view. So, for example, you may pass data into your viewable class' constructor and set that data to public properties defined on the class:

Once the data has been set to a public property, it will automatically be available in your view, so you may access it like you would access any other data in your Blade templates:

Via The with Method:

If you would like to customize the format of your view's data before it is sent to the template, you may manually pass your data to the view via the with method. Typically, you will still pass data via the viewable class' constructor; however, you should set this data to protected or private properties so the data is not automatically made available to the template. Then, when calling the with method, pass an array of data that you wish to make available to the template:

Once the data has been passed to the with method, it will automatically be available in your view, so you may access it like you would access any other data in your Blade templates:

Rendering The View

~~To serve a view, use the helper function viewable(). You may pass an instance of your viewable class to this helper function:~~

As of release 0.2 Viewables implement Laravel's Responsable Interface which now allows you to return a new instance of a Viewable Class straight from the controller. The viewable() function is still available but will be removed in a future release.


All versions of laravel-viewables with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.0
laravel/framework Version >= 5.5.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 haganjones/laravel-viewables contains the following files

Loading the files please wait ....