How is $towyards variable assigned; what is the Eloquent query?
Nov 29, 2022
6
Level 1
Show laravel data with vue
Hey, i use laravel with Vue and i want to schow my data from database with vue componentes. But it only show the last of the database not every, why ?
@foreach ($towyards as $towyard)
<towyard-card
vehicle="{{ $towyard->vehicle }}"
sign="{{ $towyard->sign}}"
customer="{{ $towyard->customer }}"
employee="{{ $towyard->user->name }}"
info="{{ $towyard->info }}"
distance="{{ number_format($towyard->distance, 0, ',', '.') }}"
status="{{ $towyard->status }}"
time="{{ date('H:i', strtotime($towyard->created_at))}}"
/>
@endforeach
Please or to participate in this conversation.