<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
motomedialab / laravel-self-healing-urls example snippets
namespace App\Models;
use Illuminate\Support\Str;
use Illuminate\Database\Eloquent\Model;
use MotoMediaLab\LaravelSelfHealingUrls\HasSelfHealingUrl;
class Post extends Model {
use HasSelfHealingUrl;
public function getRouteBindingSlug(): string
{
return Str::slug($this->title);
}
}
use App\Models\Post;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('posts', function (Blueprint $table) {
Post::selfHealingUrlMigration($table);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('posts', function (Blueprint $table) {
Post::selfHealingUrlMigration($table, true);
});
}
};
public function getRouteBindingKeyName(): string
{
return 'new_binding_key';
}
public function getRouteBindingKey(): string
{
return Str::random(4); // generate random four character binding key
}
public function getModelUrl(): string
{
return route('posts.show', $this);
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.