Advertisement
Guest User

model

a guest
Jan 21st, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. class Produk extends Model
  2. {
  3. use SoftDeletes;
  4. protected $table = "produks";
  5. protected $fillable = ['kategori_id', 'user_id', 'url_images', 'bahan', 'tebel_bahan', 'warna', 'gambar', 'judul', 'keterangan', 'harga', 'slug'];
  6. protected $casts = [
  7. 'deleted_at' => 'string',
  8. 'gambar' => 'array',
  9. ];
  10. protected $appends = ['url_images'];
  11. public function getUrlImagesAttribute()
  12. {
  13. $url_images = [];
  14. foreach ($this->gambar as $image) {
  15. $url_images[] = asset('upload/' . $image);
  16. }
  17. return $url_images;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement