ekmungai / eloquent-ifrs

Eloquent Double Entry Accounting with a focus on IFRS Compliant Reporting
MIT License
334 stars 68 forks source link

Balance sheet code is not working #74

Closed FahadRafique229 closed 2 years ago

FahadRafique229 commented 3 years ago

I am using the below code: $balanceSheet = new BalanceSheet("2021-12-31"); $balanceSheet->getSections(); dd($balanceSheet->toString()); but its not working. i am getting following error Maximum execution time of 60 seconds exceeded

ekmungai commented 3 years ago

Hi @FahadRafique229,

That error is caused by your php settings, not the package and can happen when you have many records that you are preparing the report for. You can increase the execution time by changing the max_execution_time variable in your php.ini.

Cheers