OrderPatient.php 312 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: zilongs
  5. * Date: 20-10-1
  6. * Time: 上午12:09
  7. */
  8. namespace App\Models;
  9. class OrderPatient extends BaseModel
  10. {
  11. protected $casts = [
  12. 'medical_imgs' => 'json',
  13. ];
  14. public function order()
  15. {
  16. return $this->belongsTo(Order::class);
  17. }
  18. }