<META NAME="robots" CONTENT="noindex,nofollow">


<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

// Models the cateogories
class Category extends Model
{
    protected $hidden = [
        'created_at',
        'updated_at'
    ];

    //  // Eloquent relationship with the book model, a category can have many books assigned to it
    public function books()
    