检索多态关系的所有者laravel

时间:2019-07-03 18:19:03

标签: laravel eloquent polymorphism relationship

我正在尝试检索我在应用程序中定义的雄辩多态关系的所有者。这是一种关系:Theme可以由EnseignantPartenaire发布,因此两者都可以发布主题。这是对应的模型和多态关系:

Theme模型

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Theme extends Model
{

    public function themePoster(){
        return $this->morphTo();
    }
}

Enseignant模型

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Enseignant extends Model
{


    public function utilisateur(){
        return $this->belongsTo('App\Utilisateur');
    }

    public function themes(){
        return $this->morphMany('App\Theme', 'themePoster');
    }
}

Partenaire模型

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Partenaire extends Model
{


    public function utilisateur(){
        return $this->belongsTo('App\Utilisateur');
    }

    public function themes(){
        return $this->morphMany('App\Theme', 'themePoster');
    }
}

我正在尝试按照doc中显示的方式在刀片视图中检索theme的所有者。

这是控制器show的功能:

    /**
     * Display the specified resource.
     *
     * @param  int  $id
     * @return \Illuminate\Http\Response
     */
    public function show($id)
    {
        $theme = Theme::findOrFail($id);
        return view('themeShow', ['theme' => $theme]);
    }

themeShow刀片视图

@extends('layouts.layout')

@section('content')
<body>
{{$theme->intitule}} <br>
{{$theme->categorie}} <br>
{{$theme->filiereDesiree}} <br>
{{$theme->description}} <br>
<a href=" {{url('themes')}} "><button>Voir tous</button></a>
@if(Auth::guard('web')->user()->hasRole('etudiant'))
<a href=""><button>Choisir thématique</button></a>
Proposé par {{ $theme->themePoster }}
@elseif(Auth::guard('web')->user()->id == $theme->themePoster_id)
<a href=" {{ url('themes/' .$theme->id. '/edit' ) }} "><button>Modifier thématique</button></a>
<form method="POST" action=" {{ route('themes.destroy', $theme->id ) }} ">
    @csrf
    @method('DELETE')
<a class="btn btn-danger"> <input  class="delete" type="submit" name="submit" value="Supprimer thématique"><i class="fa fa-trash"></i></a>
</form>
@endif
@jquery
<script type="text/javascript">
    $("input[type=submit]").on("click", function(){
        return confirm('Etes-vous sûr de vouloir de supprimer cette thématique?');
    });
</script>
</body>
@endsection

这是用于检索主题所有者的行:

Proposé par {{ $theme->themePoster }}

但是我什么也没得到:Proposé par:什么也没返回。我在那儿想念什么..?我是Laravel的新手,因为这是我的第一个应用程序,也是第一次使用多态关系。非常欢迎您的帮助

修改

由于这些信息可能有助于理解。.这是我的数据库结构:

Utilisateurs

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateUtilisateursTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('utilisateurs', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('nom');
            $table->string('prenom');
            $table->string('username')->unique();
            $table->string('email')->unique();
            $table->string('password');
            $table->string('fonction');
            $table->rememberToken();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('utilisateurs');
    }
}

注意:EnseignantPartenaire继承了Utilisateur

Utilisateur的模型

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;

class Utilisateur extends Authenticatable
{
    use Notifiable;

    protected $table = 'utilisateurs';

    public function hasRole($role){
        return $this->fonction == $role;
    }

    public function etudiants(){
        return $this->hasMany('App\Etudiant');
    }

    public function enseignants(){
        return $this->hasMany('App\Enseignant');
    }

    public function partenaires(){
        return $this->hasMany('App\Partenaire');
    }
}

Enseignants

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateEnseignantsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('enseignants', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->integer('utilisateur_id')->unique();
            $table->string('isAdmin');
            $table->string('nomEntreprise')->nullable();
            $table->string('descEntreprise')->nullable();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('enseignants');
    }
}

Partenaires

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreatePartenairesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('partenaires', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->integer('utilisateur_id')->unique();
            $table->string('structure');
            $table->string('description_structure');
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('partenaires');
    }
}

基本上,themePoster_idthemePoster_type是通过获取当前EnseignantPartenaire的ID和功能来创建的。这是负责获取这些属性的代码:

<input type="hidden" id="themePoster_id" name="themePoster_id" value= "{{Auth::guard('web')->user()->id}}">
<input type="hidden" id="themePoster_type" name="themePoster_type" value= "{{Auth::guard('web')->user()->fonction}}">

正如您在此theme table的示例中看到的那样,它已被很好地记录下来,但是我对这个{{ $theme->themePoster }}感到不满意,它在这里什么也没有返回。

1 个答案:

答案 0 :(得分:0)

根据docs中所述,(默认情况下)我们需要以下条件:

  • 正确的数据库列。
  • 适当的关系声明。

您的情况如下:

// Themes table:
$table->morphs('themePoster');

// Which is short for:
$table->string('themePoster_type');
$table->unsignedBigInteger('themePoster_id');


// Partenaire and Enseignant models:
public function themes()
{
    return $this->morphMany('App\Theme', 'themePoster');
}

// Theme model:
public function themePoster(){
    return $this->morphTo();
}

({Source)of morphs

可以通过以下方式关联多态模型:

$partenaire->themes()->create([
    ...
]);

// The default behavior will result in this theme db record:
 themePoster_type | themePoster_id | more columns here 
 -----------------|----------------|-------------------
 'App\Partenaire' | 1              | ...

我认为代码中出错的部分是themePoster_type的值。假设您的记录将如下所示:

themePoster_type | themePoster_id | more columns here 
 -----------------|----------------|-------------------
 'partenaire'     | 1              | ...

Laravel无法找到partenaire作为模型,因此它不知道应该在哪个表中查找。我的假设是Laravel抛出异常,但我可能是错的。

简而言之,我认为inputAuth::guard('web')->user()->fonction发送的值不正确。您的情况应该是App\PartenaireApp\Enseignant

Laravel provides一种将某些字符串映射到正确类的解决方案。如果我要说明的问题是正确的,这将是一个很好的解决方案。您可以将键映射到正确的类。这将导致:

// AppServiceProvider@boot
Relation::morphMap([
    'partenaire' => 'App\Partenaire',
    'enseignant' => 'App\Enseignant',
]);