Download the PHP package ganyicz/nova-temporary-fields without Composer

On this page you can find all versions of the php package ganyicz/nova-temporary-fields. 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 nova-temporary-fields

Make any Laravel Nova field temporary

This package adds support for creating fields you don't want to persist in your models.

Why?

This package is meant to be used in conjunction with my other package Nova Callbacks.

Let's say you have a Product model with multiple prices depending on a currency defined in the Pricing model.

Now normally, you would use something like HasMany field on your Product resource. Although, this is not very intuitive for the admin. When he wants to update the product's pricing, he needs to go to the detail page and either create new pricing record or update an existing one. Not great.

What if you just wanted to have a price field for every currency, right inside your edit page? Let's look at the solution.

Pretty elegant, right?

By defining a field as temporary, Nova won't try to fill the attribute to your model, avoiding the Column not found exception. Although you still have access to it inside your request.

The possibilties are endless.

Installation

You can install the package via composer:

Usage

  1. Apply HasTemporaryFields trait on your resource.
  2. Chain temporary() method on any field you don't want to fill to your model.

TIP: Apply the trait on your base Resource class inside your Nova folder so that temporary fields are available for you in every new resource.

How does it work?

This package defines a temporary() macro on the base Field abstract class, which just sets a meta attribute _temp to true. The HasTemporaryFields trait overrides fillFields method on your Resource and filters out any fields with this meta attribute.


All versions of nova-temporary-fields with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2.5|^8.0
laravel/nova Version ^3.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 ganyicz/nova-temporary-fields contains the following files

Loading the files please wait ....