basket.blade
<?php $__currentLoopData = $order->products; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?><tr>
@foreach($order->products as $product)
@foreach($order->products as $product)
<tr>
<td>
<a href="{{route('product', [$product->category->code, $product->code])}}">
<img height="56px" src="https://pngimg.com/uploads/iphone_12/iphone_12_PNG12.png"
alt="товар">
{{ $product->name }}
</a>
</td>
<td><span class="badge">{{$product->pivot->count}}</span>
<div class="btn-group form-inline">
<form action="{{route('basket-remove', $product)}}" method="post">
<button type="submit" class="btn btn-danger" href=""><span
class="glyphicon glyphicon-minus" aria-hidden="true"></span></button>
@csrf
</form>
<form action="{{route('basket-add', $product)}}" method="post">
<button type="submit" class="btn btn-success" href=""><span
class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>
@csrf
</form>
</div>
@endif
</td>
<td>{{ $product->price }} usd.</td>
<td>{{ $product->getPriceForCount() }} usd.</td>
</tr>
@endforeach
{
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"axios": "^0.27",
"laravel-vite-plugin": "^0.6.0",
"lodash": "^4.17.19",
"postcss": "^8.1.14",
"vite": "^3.0.0"
}
}
Illegal instruction for currently selected processor(s)
.model small
.data
A1 DB 10
A2 DB 15
B1 DB 40
B2 DB 25
C1 DB 5
C2 DB 6
.code
.386
push @data
pop ds
start:
mov al, A1
sub al, A2
movzx ax, al
mov bl, B1
mul B2
movzx bx, bl
mov cl, C1
add cl, C2
movzx cx, cl
shl dx, 1
L1: mov cx, 2
sub bx,ax
loop L1
RET
end start
STACKSG SEGMENT PARA STACK 'Stack'
A1 DB 10
A2 DB 15
B1 DB 40
B2 DB 25
C1 DB 5
C2 DB 6
.386
STACKSG ENDS
DATASG SEGMENT PARA 'Data'
DATASG ENDS
CODESG SEGMENT PARA 'Code'
BEGIN PROC FAR
ASSUME CS:CODESG,DS:DATASG,SS:STACKSG,ES:DATASG
mov al, A1
sub al, A2
movzx ax, al
mov bl, B1
mul B2
movzx bx, bl
mov cl, C1
add cl, C2
movzx cx, cl
shl dx, 1
L1: mov cx, 2
sub bx,ax
loop L1
RET
BEGIN ENDP
CODESG ENDS
END BEGIN
Illegal read from 67368790, CS:IP 87a: 0
mov bl, B1
mul bl, B2
movzx bx, bl
L1: dec cx
sub bx,ax
loop L1
from math import log as ln
x0 = float(input())
xk = float(input())
h = float(input())
x = x0
while x <= xk:
y = ln(x)
print((ln(x)))
x += h
А на счёт этой ошибки что скажете?
public function delete(string $location): void