PATH:
home
/
lab2454c
/
omvstudio.com
/
app
/
Models
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Review extends Model { use HasFactory; protected $fillable = [ 'user_id','movie_id','rating','description','status', ]; public function user() { return $this->belongsTo(User::class); } public function movie() { return $this->belongsTo(Movie::class); } // public function getCreatedAtAttribute($value) // { // return \Carbon\Carbon::createFromFormat('Y-m-d H:i:s',$value)->format('d/m/Y H:ia'); // } }
[-] Message.php
[edit]
[-] Entertain.php
[edit]
[-] Review.php
[edit]
[+]
..
[-] HomeConfigWork.php
[edit]
[-] Category.php
[edit]
[-] MusicMania.php
[edit]
[-] Faq.php
[edit]
[-] Sport.php
[edit]
[-] Contact.php
[edit]
[-] Page.php
[edit]
[-] Media.php
[edit]
[-] Payment.php
[edit]
[-] Music.php
[edit]
[-] User.php
[edit]
[-] SiteSetting.php
[edit]
[-] PageBanner.php
[edit]
[-] BankDetail.php
[edit]
[-] ReferralPayment.php
[edit]
[-] Movie.php
[edit]
[-] Role.php
[edit]