Showing 10 of 1,322 results.

Compiling Workspaces

Compiling workspaces is similar to compiling individual documents. The main difference is that the workspace compiler will save the results to a directory on the filesystem. The output directory should already exist, and the PHP process compiling...

Resolving the Class Behind a Facade | Laravel 5 Facades

It is possible to quickly resolve the class behind a facade. Facades expose a public method getFacadeRoot which will return the instance of the underlying object the facade is forwarding method calls to. It is convenient that getFacadeRoot...