'float', 'current_balance' => 'float', 'created_at' => 'datetime', 'updated_at' => 'datetime' ]; public function getRestaurantAttribute() { if($this->from_type == 'restaurant'){ return Restaurant::find($this->from_id); } return null; } public function getDeliverymanAttribute() { if($this->from_type == 'deliveryman'){ return DeliveryMan::find($this->from_id); } return null; } }