Pro.php 202 B

123456789101112131415
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Pro extends Model
  5. {
  6. protected $table = 'pro';
  7. public function getRouteKeyName()
  8. {
  9. return 'uid';
  10. }
  11. }