-
-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/4.1.26: updated the changelog wip Apply fixes from StyleCI (#458) skipped the installer test #456 Apply fixes from StyleCI (#457) fixes #456 Apply fixes from StyleCI (#455) wip wip updated to php7.2 updating the test dependencies wip Apply fixes from StyleCI (#454) wip added a PostTags model
- Loading branch information
Showing
11 changed files
with
60 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"/js/app.js": "/js/app.js?id=16097a544d27945b54aa", | ||
"/js/app.js": "/js/app.js?id=40512207b246203d2129", | ||
"/css/app.css": "/css/app.css?id=30702a620a23ba741c32", | ||
"/css/app-dark.css": "/css/app-dark.css?id=ceb9852370c32c15e835", | ||
"/js/app.js.map": "/js/app.js.map?id=f205df6a4a43140516b1", | ||
"/js/app.js.map": "/js/app.js.map?id=641d82a0e2d575c8fac7", | ||
"/favicon.ico": "/favicon.ico?id=dbb0c05daa3432643753" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
namespace Canvas; | ||
|
||
use Illuminate\Database\Eloquent\Relations\Pivot; | ||
|
||
class PostTags extends Pivot | ||
{ | ||
/** | ||
* The attributes that aren't mass assignable. | ||
* | ||
* @var array | ||
*/ | ||
protected $guarded = []; | ||
|
||
/** | ||
* The table associated with the model. | ||
* | ||
* @var string | ||
*/ | ||
protected $table = 'canvas_posts_tags'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters