Initial commit

This commit is contained in:
lizandrogd
2023-07-26 08:28:13 -05:00
commit 8ce210f27c
1207 changed files with 36066 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?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');
// }
}