Skip to content

Instantly share code, notes, and snippets.

@evercode1
Created February 11, 2017 18:28
Show Gist options
  • Select an option

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

Select an option

Save evercode1/af5925348434cb59096f9083b704ef5b to your computer and use it in GitHub Desktop.
chapter 15 Subcategory.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Subcategory extends Model
{
protected $fillable = ['name', 'category_id'];
public function category()
{
return $this->belongsTo(Category::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment