Skip to content

Instantly share code, notes, and snippets.

@shouhei
Created August 28, 2015 06:37
Show Gist options
  • Select an option

  • Save shouhei/72e764a934ab88f07e62 to your computer and use it in GitHub Desktop.

Select an option

Save shouhei/72e764a934ab88f07e62 to your computer and use it in GitHub Desktop.
EloquentのModelに紐付いてTableを描画するときに便利なやつ
<?php
public function for_table(){
foreach($this->attributes as $kye => $val){
yield ['key'=>$kye, 'value' => $val];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment