Laravel версия 7.6.2
Я пытаюсь использовать пакет локализации mcamara / laravel.
https://github.com/mcamara/laravel-localization
Я следовал инструкциям, которые они дают на своей странице github, и сделал некоторую персонализацию, позволяющую мне использовать другое поле вместо идентификатора для достижения.
Это мои маршруты:
use Illuminate\Support\Facades\Route;
Route::group(
[
'prefix' => LaravelLocalization::setLocale(),
'middleware' => [ 'localize', 'localeSessionRedirect', 'localizationRedirect', 'localeViewPath' ]
],function () {
Route::get('/', 'HomeController@index')->name('home');
Route::get(LaravelLocalization::transRoute('routes.vehicle'), 'VehicleController@index')->name('vehicle');
Route::get(LaravelLocalization::transRoute('routes.vehicle/{vehicle_url}'), 'VehicleController@show')->name('vehicle.show');
});
Структура стола транспортного средства:
public function up()
{
Schema::create('vehicles', function (Blueprint $table) {
$table->id();
$table->string('vehicle_url')->unique();
$table->string('name_en');
$table->string('name_de');
$table->text('descr_en');
$table->text('descr_de');
$table->timestamps();
});
}
Структура стола транспортного средства:
public function up()
{
Schema::create('vehicle_slugs', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('vehicle_id');
$table->string('locale',2);
$table->string('slug')->unique();
$table->timestamps();
});
}
Модель транспортного средства:
namespace App;
use Illuminate\Database\Eloquent\Model;
use App\VehicleSlugs;
class Vehicle extends Model implements \Mcamara\LaravelLocalization\Interfaces\LocalizedUrlRoutable
{
public function getRouteKeyName()
{
return 'vehicle_url';
}
public function slugs()
{
return $this->hasMany(VehicleSlugs::class);
}
public function getLocalizedRouteKey($locale)
{
return $this->slugs->where('locale', '=', $locale)->first()->slug;
}
public function resolveRouteBinding($slug, $field = NULL)
{
return static::whereHas('slugs', function ($q) use ($slug) {
$q->where('slug', '=', $slug);
})->first() ?? abort('404');
}
}
Это контроллер:
namespace App\Http\Controllers;
use App\Vehicle;
use Illuminate\Http\Request;
class VehicleController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view('vehicles');
}
/**
* Display the specified resource.
*
* @param \App\Vehicle $vehicle
* @return \Illuminate\Http\Response
*/
public function show(Vehicle $vehicle_url)
{
return view('vehicle', compact('vehicle_url'));
}
Это vehicle.blade. php:
<!DOCTYPE html>
<html lang="{{app()->getLocale()}}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Testing mcamara</title>
</head>
<body>
<a href="{{route('home')}}">Home</a>
<a href="{{route('vehicle')}}">Vehicle</a>
@forelse(App\Vehicle::all() as $vehicle)
<a href="{{route('vehicle.show', $vehicle->vehicle_url)}}">{{$vehicle->name_en}}</a> <!-- For Example Bikes/Motocycles/Cars/.. -->
@empty
<a href="#">No Link</a>
@endforelse
</body>
</html>
Это массив, используемый для перевода (/resourse/lang/de/routes.php).
return [
"vehicles" => "fahrzeuge",
"vehicle/{vehicle_url}" => "fahrzeug/{vehicle_url}",
]; //The English file is the same with vehicles and vehicle instead of fahrzeuge and farhzeug.
Хорошо, если я наберу app.loc / de / fahrzeuge / fahrrader в адресной строке, это работает отлично, и я могу добраться до страницы велосипедов с помощью правильный перевод, но не в состоянии перевести app.loc / de / fahrzeuge / {slug} slug, используя ссылку из представления.
Конечно, я что-то пропустил , Может кто-нибудь помочь?