I have problem today, i figure it out only the views html is changing, on my controller I don't understand every time I change value the code is not reflected. here is the permission rights on my server. I use Digital Ocean for the server and laravel for the technology.
Here is the example setup that I did already:
- sudo chgrp -R www-date /var/www/project
- sudo chmod -R 777 /var/www/project/storage
Controller:
return 'Test Controller';
return view('/admin/index')
->with('finance_data',$finance_data)
->with('purchasing_data',$purchasing_data)
->with('delivery_fee_payment',$delivery_fee_payment)
->with('stock_order',$stock_order)
->with('delivery_fee_payments',$delivery_fee_payments)
->with('is_read_delivery_reference',$is_read_delivery_reference)
->with('unpaid_monitoring_reference',$unpaid_monitorings);
Output On View File:
As you can see suppose to be the output of this the return 'Test Controller';
However the file that I overwrite is not reflected.
question from:
https://stackoverflow.com/questions/65896282/is-there-way-to-findout-why-the-codes-that-i-apply-is-not-reflected-using-larave 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…