Download the PHP package ycs77/inertia-laravel-ssr-head without Composer

On this page you can find all versions of the php package ycs77/inertia-laravel-ssr-head. 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 inertia-laravel-ssr-head

Inertia.js Laravel SSR Head

Latest Version on Packagist GitHub Tests Action Status Style CI Build Status Total Downloads

English | 繁體中文

Simple SSR Head for Inertia Laravel

Inspired by Root template data of Inertia.js docs.

NOT a full SSR solution!! It doesn't solve the SEO problem!

Because I made this package to make it easier for the bot to crawl Open Graph Meta on Inertia.js App without installing (or can't installing) Headless Chrome, Node.js, or PHP V8 Extension. This is applicable in situations where you are not familiar with how to install the above packages on the server, or the server does not support them (e.g. shared hosting).

If you need a full SSR solution, please use Inertia.js Official Server-side Rendering.

Installation

Install the package via composer:

Replace <title> to @inertiaHead directive:

Install client plugin

And install the client npm package:

The package just auto-updates the client <title> tag.

Add plugin for Vue 2 in resources/js/app.js:

Use in Vue 3 in resources/js/app.js:

Use in React or other client-side frameworks:

Config

Publish the config file with:

You can set the twitter site username or many in config inertia-ssr-head.php:

Usage

Setting page title and description:

Then will be rendered to this HTML tags:

The head tags just render with server-side on first visit page, the client only updates <title>, no update other meta tags. Because the purpose of this package is only to allow the bot to crawl meta tags, it is omitted on the client-side.

The title will injection to props, you can get the page title with using prop title or $page.props.title with the Vue Options API:

Or using the Vue Composition API:

Also, if you are using this package, it is don't use Inertia <Head>.

Title template

If you want to add the Web site name after the title, use titleTemplate() in AppServiceProvider, support using string and Closure:

Or setting for one Inertia page:

If you want to disable title template only one page, you can set false in title():

Open Graph meta tags

Render Open Graph tags, have title, description and ogMeta(), the ogMeta() will generate the Open Graph meta og:title, og:description, og:image:

Or if you want only render og:title, og:description meta tags:

Twitter Card meta tags

Add Twitter Summary card meta tags with twitterSummaryCard():

Add Summary large image card meta tags with twitterLargeCard():

Add App card meta tags with twitterAppCard():

Add Player card meta tags with twitterPlayerCard():

Custom head tag

Use tag() method will add the custom HTML tag in <head>:

Testing

Reference

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of inertia-laravel-ssr-head with dependencies

PHP Build Version
Package Version
Requires php Version >=7.3
laravel/framework Version >=7.0
inertiajs/inertia-laravel Version >=0.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 ycs77/inertia-laravel-ssr-head contains the following files

Loading the files please wait ....