TokenDictionaryPivot.php 260 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace App\Models\Pivots; use Illuminate\Database\Eloquent\Relations\Pivot; class TokenDictionaryPivot extends Pivot { protected $casts = [ 'token_id' => 'int', 'dictionary_id' => 'int', 'updated' => 'boolean', ]; }