$router->get('profile', 'ProfileController@show');
$router->get('profile/{id}', 'ProfileController@show');
$router->get('test/{number?}', function ($number = null) {
return $number;
});
<?php
$data =
[
[
'id' => 1,
'quantity' => 10,
],
[
'id' => 1,
'quantity' => 20,
],
[
'id' => 2,
'quantity' => 20,
],
[
'id' => 2,
'quantity' => 20,
],
];
function all_sum($data){
$new_data = [];
foreach($data as $one){
if(isset($new_data[$one['id']])){
$new_data[$one['id']]['quantity'] += $one['quantity'];
} else {
$new_data[$one['id']]= $one;
}
}
return $new_data;
}
$summ = all_sum($data);
можно отправить переменную, например во внешний js, а там уже повесить обработчик, если переменная, допустим = 1, показать сообщение
отправить уведомление на сайт
If the bean cannot be loaded a new empty bean will be dispensed with id 0.
if (!$bean->id) { ...help bean not found!!.. }