Created
August 28, 2015 06:37
-
-
Save shouhei/72e764a934ab88f07e62 to your computer and use it in GitHub Desktop.
EloquentのModelに紐付いてTableを描画するときに便利なやつ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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