Skip to content

Instantly share code, notes, and snippets.

@Rokt33r
Created April 3, 2014 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rokt33r/9950666 to your computer and use it in GitHub Desktop.
Save Rokt33r/9950666 to your computer and use it in GitHub Desktop.
Laravel 基礎 Lesson 7 - Model(Eloquent) (app/models/Post.php)
<?php
class Post extends Eloquent{
protected $table = 'posts';
protected $fillable = ['title', 'body'];
public $timestamps = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment