PATH:
home
/
lab2454c
/
netxzero.com
/
carbon-credit
/
app
/
Models
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class CartItem extends Model { use HasFactory; protected $fillable = [ 'project_id', 'carbon_quantity' ]; public function user() { return $this->belongsTo(User::class, 'user_id'); } // public function project() // { // return $this->belongsTo(Project::class, 'project_id'); // } }
[+]
..
[-] Country.php
[edit]
[-] HomeBanner.php
[edit]
[-] Order.php
[edit]
[-] ProjectImage.php
[edit]
[-] Page.php
[edit]
[-] Gallery.php
[edit]
[-] Project.php
[edit]
[-] ContactDetail.php
[edit]
[-] User.php
[edit]
[-] SiteSetting.php
[edit]
[-] AdminUser.php
[edit]
[-] SocialLink.php
[edit]
[-] CartItem.php
[edit]