ProTextShortcut.php 252 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. # use Illuminate\Database\Eloquent\Model;
  4. class ProTextShortcut extends Model
  5. {
  6. protected $table = 'pro_text_shortcut';
  7. public function pro() {
  8. return $this->hasOne(Pro::class, 'id', 'pro_id');
  9. }
  10. }