TicketFax.php 246 B

123456789101112131415
  1. <?php
  2. namespace App\Models;
  3. # use Illuminate\Database\Eloquent\Model;
  4. class TicketFax extends Model
  5. {
  6. protected $table = "ticket_fax";
  7. public function ticket(){
  8. return $this->hasOne(Ticket::class, 'id', 'ticket_id');
  9. }
  10. }