Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meumercado.app
/
app
/
Model
/
Editing: Wishlist.php
<?php namespace App\Model; use Illuminate\Database\Eloquent\Model; class Wishlist extends Model { protected $casts = [ 'product_id' => 'integer', 'user_id' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime' ]; public function product() { return $this->belongsTo(Product::class); } }
Save
Cancel