Question
For project we are going to create a program to complete the IRS 1040EZ form, which is a personal income tax form normally used by people that do not have a lot of deductions. Attached is a copy of the form. The 1040EZ form has only 14 questions on it. Some questions are calculations which your program should calculate automatically. Your program should print a title on the screen stating what the program does. Do not worry about the fields like Name, address, etc. Your program should begin at question 1, “Wages, salaries, and tips. This should be shown in box 1 of your Form(s) W-2.” Have the user enter each number. When a line requires a calculation, like line 4 “Add lines 1, 2, and 3. This is your adjusted gross income.”, display the text of the line and the result of the calculation. The program should do the calculations.

To make things a little easier here are a few exceptions:
1. Line 8a and 8b require you to look at the instructions, which you do not have to do for this project. Assume that both line 8a and 8b are 0.
2. You can just put 0 in for line 11.
3. In Line 10 it states to check the tax table. Use the Tab Table below. The Tax Tables in the instructions is too big.

Tax Table
If Form 1040EZ, line 6, is–
And you are–
At least
But less than
Single
Married filing jointly
Your tax is–
0
1000
100
150
1001
2000
200
350
2001
3000
330
480
3001
4000
480
660
4001
5000
610
950
5001
And above
1500
1750
The program also needs to write each line with the corresponding number (from the user or calculated) to a file.

Sample 1
This program will help you complete the 1040EZ form.
1. Wages, salaries, and tips. This should be shown in box 1 of your Form(s) W-2.
>> 59100.50
2. Taxable interest. If the total is over $1,500, you cannot use Form 1040EZ.
>> 52.25
3. Unemployment compensation and Alaska Permanent Fund dividends.
>> 0.00
4. Add lines 1, 2, and 3. This is your adjusted gross income.
Your adjusted gross income is 59,152.75
5. If someone can claim you (or your spouse if a joint return) as a dependent, check the applicable box(es) below and enter the amount from the worksheet on back.
Enter Y for your and S for Spouse
>> Y
Then line 5 is 10,150
6. Subtract line 5 from line 4. If line 5 is larger than line 4, enter -0-. This is your taxable income.
49,002.75
7. Federal income tax withheld from Form(s) W-2 and 1099.
>> 7550.15
8. Earned income credit 0.00
9. Add lines 7 and 8a. These are your total payments and credits. 7550.15
10. Tax. Use the amount on line 6 above to find your tax in the tax table in the instructions. Then, enter the tax from the table on this line. Your taxes owed are 1500.
11. Health care: individual responsibility 0.00
12. Add lines 10 and 11. This is your total tax.
150
13. If line 9 is larger than line 12, subtract line 12 from line 9. This is your refund. 6050.12
14. If line 12 is larger than line 9, subtract line 9 from line 12. This is the amount you owe. 0.00
Solution Preview

These solutions may offer step-by-step problem-solving explanations or good writing examples that include modern styles of formatting and construction of bibliographies out of text citations and references.
Students may use these solutions for personal skill-building and practice.
Unethical use is strictly forbidden.

print("This program will help you complete the 1040EZ form.")

q1 = float(input("\n1. Wages, salaries, and tips. This should be shown in box 1 of your form(s) W-2.\n>> "))
q2 = float(input("\n2. Taxable interest. If the total is over $1,500, you cannot use Form1040EZ.\n>> "))
q3 = float(input("\n3. Unemployment compensation and Alaska Permanent Fund dividends.\n>> "))
q4 = q1 + q2 + q3
print("\n4. Add lines 1, 2, and 3. This is your adjusted gross income.\nYour adjusted gross income is %.2f " % q4)

q5_yn = input("\n5. If someone can claim you (or your spouse if a joint return) as a dependent,\ncheck the applicable box(es) below " +
          "and enter the amount from the worksheet on \nback\nEnter Y for You and S for Spouse\n>> ")
while q5_yn!="Y" and q5_yn!="S" and q5_yn!="y" and q5_yn!="s":
    print("\nInvalid response! Please re-enter the response.")
    q5_yn = input("\n5. If someone can claim you (or your spouse if a joint return) as a dependent,\ncheck the applicable box(es) below " +
          "and enter the amount from the worksheet on\nback\nEnter Y for You and S for Spouse\n>> ")
q5_yn.upper()
if q5_yn=="Y":
    q5_amount=10150
elif q5_yn=="S":
    q5_amount=20300
print("\nThen line 5 is %.2f" % q5_amount)
This is only a preview of the solution.
Please use the purchase button to see the entire solution.
By purchasing this solution you'll be able to access the following files:
Solution.py
Purchase Solution
$1.00
Google Pay
Amazon
Paypal
Mastercard
Visacard
Discover
Amex
View Available Computer Science Tutors 529 tutors matched
Ionut
(ionut)
Hi! MSc Applied Informatics & Computer Science Engineer. Practical experience in many CS & IT branches.Research work & homework
5/5 (5,654+ sessions)
2 hours avg response
Leo
(Leo)
Hi! I have been a professor in New York and taught in a math department and in an applied math department.
4.9/5 (5,652+ sessions)
2 hours avg response
Pranay
(math1983)
Ph.D. in mathematics and working as an Assistant Professor in University. I can provide help in mathematics, statistics and allied areas.
4.6/5 (5,512+ sessions)
1 hour avg response

Similar Homework Solutions

8.1.0PHP Version386msRequest Duration45MBMemory UsageGET college-homework-library/{category}/{subject}/{id}Route
    • Booting (245ms)time
    • Application (140ms)time
    • 1 x Booting (63.63%)
      245ms
      1 x Application (36.37%)
      140ms
      • Illuminate\Routing\Events\Routing (877μs)
      • Illuminate\Routing\Events\RouteMatched (387μs)
      • Illuminate\Foundation\Events\LocaleUpdated (4.09ms)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (156μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (146μs)
      • Illuminate\Database\Events\ConnectionEstablished (743μs)
      • Illuminate\Database\Events\StatementPrepared (6.35ms)
      • Illuminate\Database\Events\QueryExecuted (1.23ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (101μs)
      • eloquent.booting: App\Models\Subject (92μs)
      • eloquent.booted: App\Models\Subject (43μs)
      • Illuminate\Database\Events\StatementPrepared (1.72ms)
      • Illuminate\Database\Events\QueryExecuted (1.32ms)
      • eloquent.retrieved: App\Models\Subject (93μs)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibraryFile (102μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibraryFile (41μs)
      • Illuminate\Database\Events\StatementPrepared (669μs)
      • Illuminate\Database\Events\QueryExecuted (668μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (59μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (13μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (5μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (5μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (5μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (5μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (6μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (4μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (5μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (4μs)
      • eloquent.booting: App\Models\SubjectCat (470μs)
      • eloquent.booted: App\Models\SubjectCat (40μs)
      • Illuminate\Database\Events\StatementPrepared (718μs)
      • Illuminate\Database\Events\QueryExecuted (719μs)
      • eloquent.retrieved: App\Models\SubjectCat (107μs)
      • Illuminate\Cache\Events\CacheHit (10.72ms)
      • Illuminate\Cache\Events\CacheMissed (179μs)
      • Illuminate\Database\Events\StatementPrepared (832μs)
      • Illuminate\Database\Events\QueryExecuted (18.14ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (142μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (18μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (6μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (6μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (6μs)
      • Illuminate\Database\Events\StatementPrepared (676μs)
      • Illuminate\Database\Events\QueryExecuted (799μs)
      • eloquent.retrieved: App\Models\Subject (92μs)
      • Illuminate\Cache\Events\KeyWritten (839μs)
      • Illuminate\Database\Events\StatementPrepared (1.49ms)
      • Illuminate\Database\Events\QueryExecuted (995μs)
      • Illuminate\Database\Events\StatementPrepared (715μs)
      • Illuminate\Database\Events\QueryExecuted (835μs)
      • Illuminate\Database\Events\StatementPrepared (631μs)
      • Illuminate\Database\Events\QueryExecuted (693μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (39μs)
      • Illuminate\Cache\Events\CacheHit (674μs)
      • creating: homework.show (267μs)
      • composing: homework.show (114μs)
      • creating: components.breadcrumbs (240μs)
      • composing: components.breadcrumbs (116μs)
      • Illuminate\Database\Events\StatementPrepared (3.85ms)
      • Illuminate\Database\Events\QueryExecuted (3.73ms)
      • eloquent.retrieved: App\Models\SubjectCat (73μs)
      • Illuminate\Cache\Events\CacheMissed (4.52ms)
      • Illuminate\Database\Events\StatementPrepared (694μs)
      • Illuminate\Database\Events\QueryExecuted (783μs)
      • eloquent.retrieved: App\Models\SubjectCat (61μs)
      • Illuminate\Cache\Events\KeyWritten (307μs)
      • Illuminate\Cache\Events\CacheHit (196μs)
      • Illuminate\Cache\Events\CacheHit (147μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (143μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheMissed (184μs)
      • Illuminate\Database\Events\StatementPrepared (547μs)
      • Illuminate\Database\Events\QueryExecuted (811μs)
      • eloquent.retrieved: App\Models\SubjectCat (55μs)
      • Illuminate\Cache\Events\KeyWritten (271μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (151μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (134μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheMissed (182μs)
      • Illuminate\Database\Events\StatementPrepared (639μs)
      • Illuminate\Database\Events\QueryExecuted (773μs)
      • eloquent.retrieved: App\Models\SubjectCat (52μs)
      • Illuminate\Cache\Events\KeyWritten (238μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (144μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (140μs)
      • Illuminate\Cache\Events\CacheHit (150μs)
      • Illuminate\Cache\Events\CacheHit (151μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (91μs)
      • Illuminate\Cache\Events\CacheHit (309μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (141μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (224μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheMissed (201μs)
      • Illuminate\Database\Events\StatementPrepared (655μs)
      • Illuminate\Database\Events\QueryExecuted (811μs)
      • eloquent.retrieved: App\Models\SubjectCat (57μs)
      • Illuminate\Cache\Events\KeyWritten (259μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (150μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (125μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheHit (343μs)
      • Illuminate\Cache\Events\CacheHit (142μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (373μs)
      • Illuminate\Cache\Events\CacheHit (137μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (133μs)
      • Illuminate\Cache\Events\CacheHit (296μs)
      • Illuminate\Cache\Events\CacheHit (134μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (102μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (101μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheMissed (172μs)
      • Illuminate\Database\Events\StatementPrepared (656μs)
      • Illuminate\Database\Events\QueryExecuted (778μs)
      • eloquent.retrieved: App\Models\SubjectCat (55μs)
      • Illuminate\Cache\Events\KeyWritten (234μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (137μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (145μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheMissed (199μs)
      • Illuminate\Database\Events\StatementPrepared (607μs)
      • Illuminate\Database\Events\QueryExecuted (782μs)
      • eloquent.retrieved: App\Models\SubjectCat (51μs)
      • Illuminate\Cache\Events\KeyWritten (223μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (143μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (132μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (571μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (217μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (130μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheMissed (210μs)
      • Illuminate\Database\Events\StatementPrepared (594μs)
      • Illuminate\Database\Events\QueryExecuted (717μs)
      • eloquent.retrieved: App\Models\SubjectCat (51μs)
      • Illuminate\Cache\Events\KeyWritten (214μs)
      • Illuminate\Cache\Events\CacheHit (150μs)
      • Illuminate\Cache\Events\CacheHit (221μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (136μs)
      • Illuminate\Cache\Events\CacheHit (145μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (131μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (136μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (124μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (91μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (146μs)
      • Illuminate\Cache\Events\CacheHit (124μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (91μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (135μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheMissed (173μs)
      • Illuminate\Database\Events\StatementPrepared (628μs)
      • Illuminate\Database\Events\QueryExecuted (901μs)
      • eloquent.retrieved: App\Models\SubjectCat (56μs)
      • Illuminate\Cache\Events\KeyWritten (244μs)
      • Illuminate\Cache\Events\CacheHit (158μs)
      • Illuminate\Cache\Events\CacheHit (153μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (138μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (401μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (596μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (91μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (91μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (91μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (430μs)
      • Illuminate\Cache\Events\CacheHit (148μs)
      • Illuminate\Cache\Events\CacheHit (102μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (91μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (91μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (91μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (144μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (367μs)
      • Illuminate\Cache\Events\CacheHit (142μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (129μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (298μs)
      • Illuminate\Cache\Events\CacheHit (124μs)
      • Illuminate\Cache\Events\CacheMissed (178μs)
      • Illuminate\Database\Events\StatementPrepared (867μs)
      • Illuminate\Database\Events\QueryExecuted (797μs)
      • eloquent.retrieved: App\Models\SubjectCat (57μs)
      • Illuminate\Cache\Events\KeyWritten (275μs)
      • Illuminate\Cache\Events\CacheHit (153μs)
      • Illuminate\Cache\Events\CacheHit (148μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (102μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (143μs)
      • creating: site.layouts.app (397μs)
      • composing: site.layouts.app (18μs)
      • creating: components.canonical (367μs)
      • composing: components.canonical (74μs)
      • creating: components.open-graph (130μs)
      • composing: components.open-graph (46μs)
      • creating: site.headers.header (200μs)
      • composing: site.headers.header (46μs)
      • Illuminate\Cache\Events\CacheHit (1.22ms)
      • creating: components.footer (62μs)
      • composing: components.footer (66μs)
      • Illuminate\Cache\Events\CacheHit (625μs)
      • Illuminate\Cache\Events\CacheMissed (233μs)
      • Illuminate\Database\Events\StatementPrepared (756μs)
      • Illuminate\Database\Events\QueryExecuted (879μs)
      • eloquent.retrieved: App\Models\SubjectCat (59μs)
      • Illuminate\Cache\Events\KeyWritten (263μs)
      • Illuminate\Cache\Events\CacheHit (226μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (562μs)
      • Illuminate\Cache\Events\CacheHit (173μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (195μs)
      • Illuminate\Cache\Events\CacheHit (212μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (125μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (219μs)
      • creating: components.forms.contact-us (211μs)
      • composing: components.forms.contact-us (137μs)
      • creating: components.forms.get-started (136μs)
      • composing: components.forms.get-started (50μs)
      • creating: components.forms.free-tool-download (83μs)
      • composing: components.forms.free-tool-download (39μs)
      • creating: components.forms.claim-free-worksheet (76μs)
      • composing: components.forms.claim-free-worksheet (40μs)
      • creating: components.forms.tutor-subscription-waitlist (75μs)
      • composing: components.forms.tutor-subscription-waitlist (35μs)
      • creating: components.forms.tutor-subscription-join (72μs)
      • composing: components.forms.tutor-subscription-join (55μs)
      • creating: components.forms.tutor-support (76μs)
      • composing: components.forms.tutor-support (39μs)
      • 311 x Illuminate\Cache\Events\CacheHit (13.77%)
        53.11ms
        20 x Illuminate\Database\Events\QueryExecuted (9.64%)
        37.17ms
        20 x Illuminate\Database\Events\StatementPrepared (6.3%)
        24.29ms
        11 x Illuminate\Cache\Events\CacheMissed (1.67%)
        6.43ms
        1 x Illuminate\Foundation\Events\LocaleUpdated (1.06%)
        4.09ms
        11 x Illuminate\Cache\Events\KeyWritten (0.87%)
        3.37ms
        1 x Illuminate\Routing\Events\Routing (0.23%)
        877μs
        1 x Illuminate\Database\Events\ConnectionEstablished (0.19%)
        743μs
        12 x eloquent.retrieved: App\Models\SubjectCat (0.19%)
        733μs
        1 x eloquent.booting: App\Models\SubjectCat (0.12%)
        470μs
        1 x creating: site.layouts.app (0.1%)
        397μs
        1 x Illuminate\Routing\Events\RouteMatched (0.1%)
        387μs
        1 x creating: components.canonical (0.1%)
        367μs
        7 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (0.07%)
        287μs
        1 x creating: homework.show (0.07%)
        267μs
        1 x creating: components.breadcrumbs (0.06%)
        240μs
        1 x creating: components.forms.contact-us (0.05%)
        211μs
        1 x creating: site.headers.header (0.05%)
        200μs
        2 x eloquent.retrieved: App\Models\Subject (0.05%)
        185μs
        12 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.04%)
        158μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (0.04%)
        156μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (0.04%)
        146μs
        1 x composing: components.forms.contact-us (0.04%)
        137μs
        1 x creating: components.forms.get-started (0.04%)
        136μs
        1 x creating: components.open-graph (0.03%)
        130μs
        1 x composing: components.breadcrumbs (0.03%)
        116μs
        1 x composing: homework.show (0.03%)
        114μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.03%)
        102μs
        1 x eloquent.booting: App\Models\Subject (0.02%)
        92μs
        1 x creating: components.forms.free-tool-download (0.02%)
        83μs
        1 x creating: components.forms.claim-free-worksheet (0.02%)
        76μs
        1 x creating: components.forms.tutor-support (0.02%)
        76μs
        1 x creating: components.forms.tutor-subscription-waitlist (0.02%)
        75μs
        1 x composing: components.canonical (0.02%)
        74μs
        1 x creating: components.forms.tutor-subscription-join (0.02%)
        72μs
        1 x composing: components.footer (0.02%)
        66μs
        1 x creating: components.footer (0.02%)
        62μs
        1 x composing: components.forms.tutor-subscription-join (0.01%)
        55μs
        1 x composing: components.forms.get-started (0.01%)
        50μs
        1 x composing: components.open-graph (0.01%)
        46μs
        1 x composing: site.headers.header (0.01%)
        46μs
        1 x eloquent.booted: App\Models\Subject (0.01%)
        43μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.01%)
        41μs
        1 x eloquent.booted: App\Models\SubjectCat (0.01%)
        40μs
        1 x composing: components.forms.claim-free-worksheet (0.01%)
        40μs
        1 x composing: components.forms.free-tool-download (0.01%)
        39μs
        1 x composing: components.forms.tutor-support (0.01%)
        39μs
        1 x composing: components.forms.tutor-subscription-waitlist (0.01%)
        35μs
        1 x composing: site.layouts.app (0%)
        18μs
      14 templates were rendered
      • 1x homework.showshow.blade.phpblade
      • 1x components.breadcrumbsbreadcrumbs.blade.phpblade
      • 1x site.layouts.appapp.blade.phpblade
      • 1x components.canonicalcanonical.blade.phpblade
      • 1x components.open-graphopen-graph.blade.phpblade
      • 1x site.headers.headerheader.blade.phpblade
      • 1x components.footerfooter.blade.phpblade
      • 1x components.forms.contact-uscontact-us.blade.phpblade
      • 1x components.forms.get-startedget-started.blade.phpblade
      • 1x components.forms.free-tool-downloadfree-tool-download.blade.phpblade
      • 1x components.forms.claim-free-worksheetclaim-free-worksheet.blade.phpblade
      • 1x components.forms.tutor-subscription-waitlisttutor-subscription-waitlist.blade.phpblade
      • 1x components.forms.tutor-subscription-jointutor-subscription-join.blade.phpblade
      • 1x components.forms.tutor-supporttutor-support.blade.phpblade
      uri
      GET college-homework-library/{category}/{subject}/{id}
      middleware
      web, utm.parameters
      controller
      App\Http\Controllers\HomeworkLibraryController@show
      namespace
      where
      as
      homework.show
      file
      app/Http/Controllers/HomeworkLibraryController.php:79-176
      20 statements were executed, 5 of which were duplicates, 15 unique. Show only duplicated49.04ms
      • Connection Establishedtwenty4_siteHomeworkLibraryController.php#91
        Backtrace
        • 13. app/Http/Controllers/HomeworkLibraryController.php:91
        • 14. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 15. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 16. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 17. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `solutionslibrary` where `status` = 'published' and `price` > 0 and `solutionslibrary`.`id` = '14597' limit 1
        6.69mstwenty4_siteHomeworkLibraryController.php#97
        Bindings
        • 0: published
        • 1: 0
        • 2: 14597
        Backtrace
        • 16. app/Http/Controllers/HomeworkLibraryController.php:97
        • 17. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 18. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 19. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 20. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `subjects` where `subjects`.`id` in (259)
        1.51mstwenty4_siteHomeworkLibraryController.php#97
        Backtrace
        • 21. app/Http/Controllers/HomeworkLibraryController.php:97
        • 22. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 23. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 24. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 25. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` in (14597)
        930μstwenty4_siteHomeworkLibraryController.php#97
        Backtrace
        • 21. app/Http/Controllers/HomeworkLibraryController.php:97
        • 22. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 23. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 24. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
        • 25. vendor/laravel/framework/src/Illuminate/Routing/Route.php:205
      • select * from `subject_cats` where `subject_cats`.`id` = 3 limit 1
        1.01mstwenty4_siteHomeworkLibrary.php#201
        Bindings
        • 0: 3
        Backtrace
        • 20. app/Models/HomeworkLibrary/HomeworkLibrary.php:201
        • 26. app/Http/Controllers/HomeworkLibraryController.php:105
        • 27. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 28. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 29. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
      • select * from `solutionslibrary` where `id` <> 14597 and `subject` = 259 and `status` = 'published' and `price` > 0 order by RAND() limit 6
        18.32mstwenty4_siteHomeworkLibraryRepository.php#30
        Bindings
        • 0: 14597
        • 1: 259
        • 2: published
        • 3: 0
        Backtrace
        • 14. app/Repositories/HomeworkLibraryRepository.php:30
        • 15. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 16. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 18. app/Repositories/HomeworkLibraryRepository.php:39
        • 19. app/Http/Controllers/HomeworkLibraryController.php:139
      • select * from `subjects` where `subjects`.`id` in (259)
        980μstwenty4_siteHomeworkLibraryRepository.php#30
        Backtrace
        • 19. app/Repositories/HomeworkLibraryRepository.php:30
        • 20. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 21. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 23. app/Repositories/HomeworkLibraryRepository.php:39
        • 24. app/Http/Controllers/HomeworkLibraryController.php:139
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 14597 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'question' order by `order` asc, `id` asc
        910μstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 14597
        • 1: question
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:58
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 14597 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'teaser' order by `order` asc, `id` asc
        890μstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 14597
        • 1: teaser
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:69
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `solutionslibrary_files` where `solutionslibrary_files`.`solutionlib_id` = 14597 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'solution' order by `order` asc, `id` asc
        890μstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 14597
        • 1: solution
        Backtrace
        • 15. app/Models/HomeworkLibrary/HomeworkLibrary.php:260
        • 16. app/Transformers/HomeworkLibrary/HomeworkLibraryTransformer.php:80
        • 19. vendor/league/fractal/src/TransformerAbstract.php:128
        • 20. vendor/league/fractal/src/TransformerAbstract.php:107
        • 21. vendor/league/fractal/src/Scope.php:383
      • select * from `subject_cats` where `subject_cats`.`id` = 3 limit 1
        6.7mstwenty4_siteHomeworkLibrary.php#201
        Bindings
        • 0: 3
        Backtrace
        • 20. app/Models/HomeworkLibrary/HomeworkLibrary.php:201
        • 32. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 33. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 34. vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
        • 35. vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70
      • select * from `subject_cats` where `subject_cats`.`id` = 1 limit 1
        1mstwenty4_siteSubject.php#100
        Bindings
        • 0: 1
        Backtrace
        • 18. app/Models/Subject.php:100
        • 19. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 20. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 22. app/Models/Subject.php:101
        • 34. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
      • select * from `subject_cats` where `subject_cats`.`id` = 3 limit 1
        920μstwenty4_siteSubject.php#100
        Bindings
        • 0: 3
        Backtrace
        • 18. app/Models/Subject.php:100
        • 19. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 20. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 22. app/Models/Subject.php:101
        • 34. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
      • select * from `subject_cats` where `subject_cats`.`id` = 4 limit 1
        960μstwenty4_siteSubject.php#100
        Bindings
        • 0: 4
        Backtrace
        • 18. app/Models/Subject.php:100
        • 19. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 20. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 22. app/Models/Subject.php:101
        • 34. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
      • select * from `subject_cats` where `subject_cats`.`id` = 10 limit 1
        1.02mstwenty4_siteSubject.php#100
        Bindings
        • 0: 10
        Backtrace
        • 18. app/Models/Subject.php:100
        • 19. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 20. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 22. app/Models/Subject.php:101
        • 34. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
      • select * from `subject_cats` where `subject_cats`.`id` = 33 limit 1
        1mstwenty4_siteSubject.php#100
        Bindings
        • 0: 33
        Backtrace
        • 18. app/Models/Subject.php:100
        • 19. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 20. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 22. app/Models/Subject.php:101
        • 34. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
      • select * from `subject_cats` where `subject_cats`.`id` = 11 limit 1
        980μstwenty4_siteSubject.php#100
        Bindings
        • 0: 11
        Backtrace
        • 18. app/Models/Subject.php:100
        • 19. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 20. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 22. app/Models/Subject.php:101
        • 34. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
      • select * from `subject_cats` where `subject_cats`.`id` = 5 limit 1
        890μstwenty4_siteSubject.php#100
        Bindings
        • 0: 5
        Backtrace
        • 18. app/Models/Subject.php:100
        • 19. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 20. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 22. app/Models/Subject.php:101
        • 34. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
      • select * from `subject_cats` where `subject_cats`.`id` = 34 limit 1
        1.08mstwenty4_siteSubject.php#100
        Bindings
        • 0: 34
        Backtrace
        • 18. app/Models/Subject.php:100
        • 19. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 20. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 22. app/Models/Subject.php:101
        • 34. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
      • select * from `subject_cats` where `subject_cats`.`id` = 31 limit 1
        1.21mstwenty4_siteSubject.php#100
        Bindings
        • 0: 31
        Backtrace
        • 18. app/Models/Subject.php:100
        • 19. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 20. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 22. app/Models/Subject.php:101
        • 34. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
      • select * from `subject_cats` where `subject_cats`.`id` = 36 limit 1
        1.15mstwenty4_siteSubject.php#100
        Bindings
        • 0: 36
        Backtrace
        • 18. app/Models/Subject.php:100
        • 19. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 20. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 22. app/Models/Subject.php:101
        • 28. view::components.footer:170
      App\Models\HomeworkLibrary\HomeworkLibraryFile
      12HomeworkLibraryFile.php
      App\Models\SubjectCat
      12SubjectCat.php
      App\Models\HomeworkLibrary\HomeworkLibrary
      7HomeworkLibrary.php
      App\Models\Subject
      2Subject.php
          _token
          w2P0ZxuiwiwHYq2K8dFyBRbB6lPNC5XOcCaar3t4
          utm_source
          direct
          redirectUrl
          /college-homework-library/Computer-Science/Python-Programming/14597
          _previous
          array:1 [ "url" => "https://staging.dev.24houranswers.com/college-homework-library/Computer-Scienc...
          _flash
          array:2 [ "old" => [] "new" => [] ]
          PHPDEBUGBAR_STACK_DATA
          []
          path_info
          /college-homework-library/Computer-Science/Python-Programming/14597
          status_code
          200
          
          status_text
          OK
          format
          html
          content_type
          text/html; charset=UTF-8
          request_query
          []
          
          request_request
          []
          
          request_headers
          0 of 0
          array:21 [ "priority" => array:1 [ 0 => "u=0, i" ] "accept-encoding" => array:1 [ 0 => "gzip, deflate, br, zstd" ] "sec-fetch-dest" => array:1 [ 0 => "document" ] "sec-fetch-user" => array:1 [ 0 => "?1" ] "sec-fetch-mode" => array:1 [ 0 => "navigate" ] "sec-fetch-site" => array:1 [ 0 => "none" ] "accept" => array:1 [ 0 => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" ] "user-agent" => array:1 [ 0 => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" ] "upgrade-insecure-requests" => array:1 [ 0 => "1" ] "sec-ch-ua-platform" => array:1 [ 0 => ""Windows"" ] "sec-ch-ua-mobile" => array:1 [ 0 => "?0" ] "sec-ch-ua" => array:1 [ 0 => ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"" ] "cache-control" => array:1 [ 0 => "no-cache" ] "pragma" => array:1 [ 0 => "no-cache" ] "x-amzn-trace-id" => array:1 [ 0 => "Root=1-67f8928b-48c2b1dd4d890f112fde3833" ] "host" => array:1 [ 0 => "staging.dev.24houranswers.com" ] "x-forwarded-port" => array:1 [ 0 => "443" ] "x-forwarded-proto" => array:1 [ 0 => "https" ] "x-forwarded-for" => array:1 [ 0 => "18.117.170.130" ] "content-length" => array:1 [ 0 => "" ] "content-type" => array:1 [ 0 => "" ] ]
          request_cookies
          []
          
          response_headers
          0 of 0
          array:5 [ "content-type" => array:1 [ 0 => "text/html; charset=UTF-8" ] "cache-control" => array:1 [ 0 => "no-cache, private" ] "date" => array:1 [ 0 => "Fri, 11 Apr 2025 03:54:51 GMT" ] "set-cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6ImNFQU1heWUvSm5oZ2MwUVRlaDJ1T2c9PSIsInZhbHVlIjoiZ3FIaDFrNS9seUY3L0pPam5SWjZiYWFJaGg3OE4wR1JmOW5QT2tyR01qa3F5R0Z4UzBmckhxU3hsWS81Wm0zL1JxZGtadC84eVM4QzFqVm8vcUlUZ0pWYytkZGxWNFlsRmhOQ1dNRm16VVVmcnJEZmRtM1RUNFk2VEV4SHZQbjgiLCJtYWMiOiIxZDNjMjNhZWUyMjViMzEyZjMxNDI0ZGQwYWJmYTdhNzdiNThmNGNmYjRkZTg4NTU2ODk5OTA5Yzg4NzBhZTlmIiwidGFnIjoiIn0%3D; expires=Fri, 11 Apr 2025 05:54:51 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; samesite=laxXSRF-TOKEN=eyJpdiI6ImNFQU1heWUvSm5oZ2MwUVRlaDJ1T2c9PSIsInZhbHVlIjoiZ3FIaDFrNS9seUY3L0pPam5SWjZiYWFJaGg3OE4wR1JmOW5QT2tyR01qa3F5R0Z4UzBmckhxU3hsWS81Wm0zL1JxZGtad" 1 => "24houranswers_session=eyJpdiI6IlNPTGhxb21iWWdMcWFhckV4aER6WHc9PSIsInZhbHVlIjoiQXZUazcyY1dLalgzZ2hTT082TEUzL2k1WDhNYmlPanNiTVFqZE5TU2pwVVI4bGFEME1VMWZqSTlYS0RpNlFQbmpVS2FQWGhSTE9QVmVzckY5Z0s2T0x3SjRQVVNjV2ZiMGxIOTJkTG1OZHk2enRBOWlMMnZXZUVNZ01LVUZpZDYiLCJtYWMiOiI1MzViODkyODk0MWJmMmU5Y2UzYjUyOTZkNTc1OGUxNDBkYmNjZGQ3NzJmNDI1NmY2ZGNmOTAyOGU3YTdkMDBlIiwidGFnIjoiIn0%3D; expires=Fri, 11 Apr 2025 05:54:51 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; httponly; samesite=lax24houranswers_session=eyJpdiI6IlNPTGhxb21iWWdMcWFhckV4aER6WHc9PSIsInZhbHVlIjoiQXZUazcyY1dLalgzZ2hTT082TEUzL2k1WDhNYmlPanNiTVFqZE5TU2pwVVI4bGFEME1VMWZqSTlYS0RpNl" ] "Set-Cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6ImNFQU1heWUvSm5oZ2MwUVRlaDJ1T2c9PSIsInZhbHVlIjoiZ3FIaDFrNS9seUY3L0pPam5SWjZiYWFJaGg3OE4wR1JmOW5QT2tyR01qa3F5R0Z4UzBmckhxU3hsWS81Wm0zL1JxZGtadC84eVM4QzFqVm8vcUlUZ0pWYytkZGxWNFlsRmhOQ1dNRm16VVVmcnJEZmRtM1RUNFk2VEV4SHZQbjgiLCJtYWMiOiIxZDNjMjNhZWUyMjViMzEyZjMxNDI0ZGQwYWJmYTdhNzdiNThmNGNmYjRkZTg4NTU2ODk5OTA5Yzg4NzBhZTlmIiwidGFnIjoiIn0%3D; expires=Fri, 11-Apr-2025 05:54:51 GMT; domain=.24houranswers.com; path=/XSRF-TOKEN=eyJpdiI6ImNFQU1heWUvSm5oZ2MwUVRlaDJ1T2c9PSIsInZhbHVlIjoiZ3FIaDFrNS9seUY3L0pPam5SWjZiYWFJaGg3OE4wR1JmOW5QT2tyR01qa3F5R0Z4UzBmckhxU3hsWS81Wm0zL1JxZGtad" 1 => "24houranswers_session=eyJpdiI6IlNPTGhxb21iWWdMcWFhckV4aER6WHc9PSIsInZhbHVlIjoiQXZUazcyY1dLalgzZ2hTT082TEUzL2k1WDhNYmlPanNiTVFqZE5TU2pwVVI4bGFEME1VMWZqSTlYS0RpNlFQbmpVS2FQWGhSTE9QVmVzckY5Z0s2T0x3SjRQVVNjV2ZiMGxIOTJkTG1OZHk2enRBOWlMMnZXZUVNZ01LVUZpZDYiLCJtYWMiOiI1MzViODkyODk0MWJmMmU5Y2UzYjUyOTZkNTc1OGUxNDBkYmNjZGQ3NzJmNDI1NmY2ZGNmOTAyOGU3YTdkMDBlIiwidGFnIjoiIn0%3D; expires=Fri, 11-Apr-2025 05:54:51 GMT; domain=.24houranswers.com; path=/; httponly24houranswers_session=eyJpdiI6IlNPTGhxb21iWWdMcWFhckV4aER6WHc9PSIsInZhbHVlIjoiQXZUazcyY1dLalgzZ2hTT082TEUzL2k1WDhNYmlPanNiTVFqZE5TU2pwVVI4bGFEME1VMWZqSTlYS0RpNl" ] ]
          session_attributes
          0 of 0
          array:6 [ "_token" => "w2P0ZxuiwiwHYq2K8dFyBRbB6lPNC5XOcCaar3t4" "utm_source" => "direct" "redirectUrl" => "/college-homework-library/Computer-Science/Python-Programming/14597" "_previous" => array:1 [ "url" => "https://staging.dev.24houranswers.com/college-homework-library/Computer-Science/Python-Programming/14597" ] "_flash" => array:2 [ "old" => [] "new" => [] ] "PHPDEBUGBAR_STACK_DATA" => [] ]