Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelpetscentercampinas.meumercado.app
/
app
/
Model
/
Editing: DeliveryMan.php
<?php namespace App\Model; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Illuminate\Support\Facades\DB; class DeliveryMan extends Authenticatable { use Notifiable; public function reviews() { return $this->hasMany(DMReview::class,'delivery_man_id'); } public function rating() { return $this->hasMany(DMReview::class) ->select(DB::raw('avg(rating) average, delivery_man_id')) ->groupBy('delivery_man_id'); } }
Save
Cancel