Pembelian.php 351 Bytes
Newer Older
jhon committed
1 2 3 4 5 6 7 8
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Pembelian extends Model
{
Yonatan Parapat committed
9
    protected $table = 'pembelians';
jhon committed
10 11 12 13 14 15 16 17
    protected $fillable = [
        'username','nama_barang', 'kategori','jumlah','total_harga','user_id','status_pengantaran',
    ];

    public function user(){
        return $this->belongsTo(User::class);
    }
}