HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/thread-self/cwd/app/Models/
Upload File :
Current File : //proc/thread-self/cwd/app/Models/WorkshopCategory.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class WorkshopCategory extends Model {

    protected $fillable = [ 'name' ];

    public function categories() {
        return $this->belongsToMany(Category::class, 'workshop_categories_has_categories', 'workshop_category_id', 'category_id');
    }

    public function workshops(){
        return $this->belongsToMany(Workshop::class, 'workshop_has_workshop_categories');
    }
}