Preparing Your Model
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class YourModel extends Model implements HasGraphify
{
use GraphifyTrait;
}Graphify Image URL Field
$table->string('og_image_url')->nullable();public function getOpenGraphImageUrlField(): string
{
return 'your_custom_open_graph_image_url';
}Last updated