Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
193 views
in Technique[技术] by (71.8m points)

ubuntu - Is there way to findout why the codes that I apply is not reflected using laravel?

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.

Server

Here is the example setup that I did already:

  1. sudo chgrp -R www-date /var/www/project
  2. 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:

View

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...