2017-02-24 2 views
0

チェックリストのようにカスタムフィールドを作成する必要がありますが、テーブルと2番目のフィールド「注文」があります。
これは私が持っているものです。ピボットテーブルで余分な列を使用する方法

  • モデル1:関係を持つ条件「belongsToMany」
  • モデル2:サブサービス

これらの2つのモデルが2を持っているテーブルproducts_serviceとの関係にありますforeign_keysと「注文」列

私が理解できないものは:
バックパックで余分な情報を保存する方法。

$user->roles()->updateExistingPivot($roleId, $attributes); 

しかし、ここで私はそれを置く必要があります。

私はこのようなものを使用できることをご存知ですか?ここで

は私のコードです:

class Condition extends Model 
{ 
    use CrudTrait; 
    use Searchable; 

    public function relService() 
    { 
    //dd($this->belongsToMany(SubService::class, 'conditions_service')->withPivot('weight')->withTimestamps()); 
      return $this->belongsToMany(SubService::class, 'conditions_service')->withPivot('weight')->withTimestamps(); 
    } 
} 

class SubService extends Model 
{ 
    use Searchable; 
    use CrudTrait; 

    public function conditions() 
    { 
    return $this->belongsToMany(Condition::class, 'conditions_service')->withPivot('weight')->withTimestamps(); 
    } 
} 

は、ここに私のカスタムフィールドタイプです:

<!-- select2 --> 
<div @include('crud::inc.field_wrapper_attributes') > 
    <label>{!! $field['label'] !!}</label> 
    @include('crud::inc.field_translatable_icon') 
    <?php $entity_model = $crud->getModel(); ?> 

    <div class="row"> 
     <div class="col-sm-12"> 
      <table id="crudTable" class="table table-bordered table-striped display"> 
       <thead> 
       <tr> 
        @if ($crud->details_row) 
         <th></th> <!-- expand/minimize button column --> 
        @endif 

        {{-- Table columns --}} 
        <th>Seleziona</th> 
        <th>Ordine</th> 
        {{--<th>Ordine <i class="fa fa-arrow-up" aria-hidden="true"></i></th> 
        <th>Ordine <i class="fa fa-arrow-down" aria-hidden="true"></i></th>--}} 
        {{--$tst = $connected_entity_entry->relService->whereIn('id', $connected_entity_entry->id)--}} 
       </tr> 
       </thead> 
       <tbody> 
       @foreach ($field['model']::all() as $connected_entity_entry) {{--var_dump((empty($connected_entity_entry->conditions->toArray())?"puppa":(empty($connected_entity_entry->conditions->whereIn('id', $connected_entity_entry->id)->toArray())?"puppa uguale":$connected_entity_entry->conditions->whereIn('id', $connected_entity_entry->id)))) --}} 
       {{-- dump($connected_entity_entry->getPriority($connected_entity_entry->id)) --}} 
       <tr> 
        <th scope="row"> 
         <div class="col-sm-4"> 
          <div class="checkbox"> 
           <label> 
            <input type="checkbox" 
              name="{{ $field['name'] }}[]" 
              value="{{ $connected_entity_entry->id }}" 

              @if((old($field["name"]) && in_array($connected_entity_entry->id, old($field["name"]))) || (isset($field['value']) && in_array($connected_entity_entry->id, $field['value']->pluck('id', 'id')->toArray()))) 
              checked="checked" 
              @endif > {!! $connected_entity_entry->{$field['attribute']} !!} 
           </label> 
          </div> 
         </div> 
        </th> 
        <td>{{[email protected]('crud::fields.number')--}} 

        </td> 
       </tr> 
       @endforeach 
       </tbody> 
      </table> 
     </div> 

     {{-- HINT --}} 
     @if (isset($field['hint'])) 
      <p class="help-block">{!! $field['hint'] !!}</p> 
     @endif 
    </div> 
</div> 

はあなたの助けをありがとう! デイブ

+0

qのフォーマットが改善されました。コードサンプルを完成させるために2番目のクラスの最後に '}' charを追加しました。 – zx485

答えて

0

私は彼のプル要求(https://github.com/Laravel-Backpack/CRUD/pull/351

とソリューションのおかげ密チームはここに私のコードが更新されますが見つかりました:

CrudController:

$this->crud->addField([ 
     'label'  => 'Servizi legati', 
     'type'  => 'checklist_ordered', 
     'name'  => 'relService', 
     'entity' => 'relService', 
     'attribute' => 'title', 
     'model'  => "App\Models\SubService", 
     'pivot'  => true, 
     'pivotFields' => [ 
      'weight' => 'Ordinamento', 
     ], 
    ], 'update/create/both'); 

は、ここに私のカスタムフィールドタイプです:

<!-- select2 --> 
<div @include('crud::inc.field_wrapper_attributes') > 
    <label>{!! $field['label'] !!}</label> 
    @include('crud::inc.field_translatable_icon') 
    @if (isset($field['model'])) 
     <?php $entity_model = $crud->getModel(); 

     $pivot_entries = null; 
     if (isset($entry)) { 
      $pivot_entries = $entry->{$field['entity']}->keyBy(function ($item) { 
       return $item->getKey(); 
      }); 
     } 
     ?> 
     <div class="row"> 
      <div class="col-sm-12"> 
       <table id="crudTable" class="table table-bordered table-striped display"> 
        <thead> 
        <tr> 
         @if ($crud->details_row) 
          <th></th> <!-- expand/minimize button column --> 
         @endif 

         {{-- Table columns --}} 
         <th>Seleziona</th> 
         @foreach($field['pivotFields'] as $pivot_chunk) 
          <th>{{$pivot_chunk}}</th> 
         @endforeach 

        </tr> 
        </thead> 
        <tbody> 
        @foreach ($field['model']::all() as $connected_entity_entry) 
        <tr> 
         <th scope="row"> 
          <div class="col-sm-4"> 
           <div class="checkbox"> 
            <label> 
             <input type="checkbox" 
               name="{{ $field['name'] }}[]" 
               value="{{ $connected_entity_entry->id }}" 

               @if((old($field["name"]) && in_array($connected_entity_entry->id, old($field["name"]))) || (isset($field['value']) && in_array($connected_entity_entry->id, $field['value']->pluck('id', 'id')->toArray()))) 
               checked="checked" 
               @endif > {!! $connected_entity_entry->{$field['attribute']} !!} 
            </label> 
           </div> 
          </div> 
         </th> 
         <td> 
          @foreach(array_chunk($field['pivotFields'], 2, true) as $pivot_chunk) 
           @foreach ($pivot_chunk as $pivot_field => $pivot_name) 
            <?php 
            $pivot_attr = null; 
            if ($pivot_entries) { 
             if ($pivot_entries->has($connected_entity_entry->getKey())) { 
              $pivot  = $pivot_entries->get($connected_entity_entry->getKey())->pivot; 
              $pivot_attr = $pivot->getAttribute($pivot_field); 
             } 
            } 
            ?> 
            <input type="number" 
              name="{!! $pivot_field !!}[{{ $connected_entity_entry->getKey() }}]" 
              value="{{ $pivot_attr }}" @include('crud::inc.field_attributes') /> 
           @endforeach 
          @endforeach 
         </td> 
        </tr> 
        @endforeach 
        </tbody> 
       </table> 
      </div> 
      @endif 
      {{-- HINT --}} 
      @if (isset($field['hint'])) 
       <p class="help-block">{!! $field['hint'] !!}</p> 
      @endif 
     </div> 
</div> 
関連する問題