Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
Image | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
imageable | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace App\Models; |
4 | |
5 | use Illuminate\Database\Eloquent\Factories\HasFactory; |
6 | use Illuminate\Database\Eloquent\Model; |
7 | |
8 | class Image extends Model |
9 | { |
10 | use HasFactory; |
11 | protected $table = 'images'; |
12 | |
13 | protected $guarded = []; |
14 | |
15 | protected $casts = [ |
16 | 'id' => 'integer', |
17 | ]; |
18 | |
19 | //relations |
20 | public function imageable() |
21 | { |
22 | return $this->morphTo(); |
23 | } |
24 | } |