Files
sirpremiumv2/app/Models/Promocion_tarifa.php
T
2023-11-07 22:43:10 +00:00

24 lines
403 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Promocion_tarifa extends Model
{
use HasFactory;
protected $fillable = [
'promocion_id',
'tarifa_id',
];
//public function promocion_tarifa(){
// return $this ->belongsTo(Promociones::class,'promocion_id');
// }
}