Skip to content

Instantly share code, notes, and snippets.

@evercode1
Last active February 11, 2017 20:34
Show Gist options
  • Select an option

  • Save evercode1/37914a5cc6de8b8c7e1a9bfcee79012c to your computer and use it in GitHub Desktop.

Select an option

Save evercode1/37914a5cc6de8b8c7e1a9bfcee79012c to your computer and use it in GitHub Desktop.
chapter 15 Lesson.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Lesson extends Model
{
protected $fillable = ['name',
'slug',
'category_id',
'subcategory_id'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment