@let empty = this.store.isEmpty(); @let loading = this.store.isLoading(); @let cars = this.store.cars();

My cars

@if (!empty) { @if(loading) { } @else { @for (car of cars; track car.id) { } } } @else { }
# Brand Model Year Color Actions
{{ car.id }} {{ car.brand }} {{ car.model }} {{ car.year }} {{ car.color }}
No cars found