what do you guys use to do flash messages?
Do you know how to refresh the cache or what is happening?
There is a italian developer of Laravel?
Or is there someone who has already worked with this app?
Is someone here that can help guiding me to deploy an app to Google Cloud?


whenever i am click on the delete link that time show this error (page not found) how to solve this? plz help me
* Url: Don’t writte the url like that, you can use helpers for that, you can use url() or route()
* Route: The route should give info about what resource you are acceding and use the http verbs, for example
get : user/1 you get data of the user with id 1
delete: user/1 you delete the user with id 1 from database.
Try something like ‘delete/{id}’
Don’t be afraid of the documentation, it have a lot of info.
Log in to Facebook to start sharing and connecting with your friends, family and people you know.
role_id and role is the same thing

You can write queries using: DB::raw(“select *……”)
Am new to laravel as well. How to do without raw SQL query
how do i set logName without using model event
Why do you have unsignedbigInteger for sub_services? or were you able to solve the issue
Restart queue daemon
There is a italian developer of Laravel?

[issues_batch_no] => 10012
[car] => 4
[job_no] => AVZ-18-009
[part] => 274
[serial_no] => N/A
[quantity] => 1
[bin] => 276
[description] => bearings
[issued_by] => 4
[received_by] => 16
[batch_status] => 1
[url] => issue/parts/post
[created_at] => 2020-11-04 10:23:05
[updated_at] => 2020-11-04 10:23:05
[creator] => Array
(
[id] => 4
[name] => Stores
)
[receiver] => Array
(
[id] => 16
[name] => Simon
)
[cars] => Array
(
[id] => 4
[Make] => Subaru
[Model] => forester STI
)
[parts] => Array
(
[id] => 274
[part_no] => 237
[alt_part_no] => 0
[batch_no] => 1806-32217-1
[batch] => 19003
[quantity] => 0
[creator] => 4
[description] => bearings
[cost_unit] => 0.15
[bin] => 276
[receive_remarks] =>
[shelflife] => 2
[expiry_date] => 2021-01-14 00:00:00
[url] => receive/parts/post
[created_at] => 2020-09-23 06:02:47
[updated_at] => 2021-01-23 19:29:07
[part_number] => Array
(
[id] => 237
[part_no] => AS3209-016
)
)
$issued_parts = $query->orderBy(‘id’, ‘desc’)
->with(‘creator:id,name’)
->with(‘receiver:id,name’)
->with([‘cars:id,make, model)
// ->with(‘parts.part_number:id,part_no’)
->with([‘parts.part_number’=>function($pp) {
$pp->select(‘id’,’part_no’);
} ])
->get();
(
[id] => 274
[part_no] => 237
[part_number] => Array
(
[id] => 237
[part_no] => AS3209-016
)
)
@w3lifer I tried, but for some reason it still does that. Forcefully killed it, and it restarted itself, because it is in cron job.
Maybe supervisor starts daemon …