source: app/Models/Tag.php

Last change on this file was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago

initial commit

  • Property mode set to 100644
File size: 234 bytes
Line 
1<?php
2
3namespace App\Models;
4
5use Illuminate\Database\Eloquent\Model;
6
7class Tag extends Model
8{
9 protected $table = "tags";
10
11 public function post()
12 {
13 return $this->belongsToMany(Post::class, "posts_tags");
14 }
15}
Note: See TracBrowser for help on using the repository browser.