geofftech/laravel-opengraph

OpenGraph configuration for Laravel

0.0.5 2024-08-21 00:57 UTC

This package is auto-updated.

Last update: 2025-03-21 02:10:33 UTC


README

Usage examples

  • in render function
   public function render(OpenGraph $og)
    {
        if (!$this->project->is_published) {
            abort(404);
        }

        $og->title($this->project->name);

        return view('livewire.pages.project-show-page');
    }

Implementation

  • add to layout head
    <x-opengraph::head />
  • remove any title tags that may be there

Tutorials

Card Validators