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 Project extends Model { use HasFactory; protected $fillable = [ 'project_id', 'type', 'name', 'city', 'state', 'country', 'registry_serial_number_range', 'registry_link', 'registry_name', 'project_url', 'available_carbon_in_kg', 'cost_per_kg_carbon_in_usd_cents', 'kwh_of_electricity_per_unit', 'is_featured', 'short_name', 'short_description', 'long_description', 'registry_project_id', 'durability', 'limitations', 'offset_classification', 'location_lat', 'location_lon', 'rating', 'rating_title' ]; public function images() { return $this->hasMany(ProjectImage::class); } }
[+]
..
[-] 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]