Showing 10 of 2,044 results.

Image | Open Graph Metadata

The image helper method queues a <meta name="image" property="og:image" content="..."> tag. By default it does not contain a value, and is generally used to construct a large amount of meta tags at once.

Image Type | Open Graph Metadata

The imageType method queues a <meta property="og:image:type" content="..."> tag. By default it does not contain a value, and is generally used to construct a large amount of meta tags at once.

Image Width | Open Graph Metadata

The imageWidth method queues a <meta property="og:image:width" content="..."> tag. By default it does not contain a value, and is generally used to construct a large amount of meta tags at once.

Image Height | Open Graph Metadata

The imageHeight method queues a <meta property="og:image:height" content="..."> tag. By default it does not contain a value, and is generally used to construct a large amount of meta tags at once.

Image Alt | Open Graph Metadata

The imageAlt method queues a <meta property="og:image:alt" content="..."> tag. By default it does not contain a value, and is generally used to construct a large amount of meta tags at once.

Video | Open Graph Metadata

The video helper method queues a <meta name="video" property="og:video" content="..."> tag. By default it does not contain a value, and is generally used to construct a large amount of meta tags at once.

Video Type | Open Graph Metadata

The videoType method queues a <meta property="og:video:type" content="..."> tag. By default it does not contain a value, and is generally used to construct a large amount of meta tags at once.

Video Width | Open Graph Metadata

The videoWidth method queues a <meta property="og:video:width" content="..."> tag. By default it does not contain a value, and is generally used to construct a large amount of meta tags at once.

Video Height | Open Graph Metadata

The videoHeight method queues a <meta property="og:video:height" content="..."> tag. By default it does not contain a value, and is generally used to construct a large amount of meta tags at once.

Laravel Artisan General Command: The up Command

The up command is used to take an application out of maintenance mode. It does this by removing a file named down from the application's framework storage directory (by default this is storage/framework/ ). The following demonstrates the usage of...