Pembelian.php 351 Bytes
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Pembelian extends Model
{
    protected $table = 'pembelians';
    protected $fillable = [
        'username','nama_barang', 'kategori','jumlah','total_harga','user_id','status_pengantaran',
    ];

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