for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PragmaRX\Tracker\Vendor\Laravel\Models;
class RoutePath extends Base
{
protected $table = 'tracker_route_paths';
protected $fillable = [
'route_id',
'path',
];
public function parameters()
return $this->hasMany($this->getConfig()->get('route_path_parameter_model'));
}
public function route()
return $this->belongsTo($this->getConfig()->get('route_model'), 'route_id');