Я новичок в laravel рамках. Я не мог получить лекарство от работы с ценами в контроллере.
Моя модель;
use Illuminate\Database\Eloquent\Model;
class Medicine extends Model
{
protected $table = 'medicine';
protected $fillable = [];
protected $guarded = [];
public function withPrice()
{
return $this->hasMany('App\Models\MedicinePrice', 'medicine_id', 'id');
}
}
В моем сервисе приложений;
public function getRecentEntries()
{
$medicines = Medicine::orderBy('id','DESC')->take(10)->get()->toArray();
dd($medicines);
return $this->formatMedicine($medicines);
}
Таблица лекарств: https://take.ms/EHrwd Таблица стоимости лекарств: https://take.ms/BMTJW
Любая помощь? Большое вам спасибо.