Python Programming

Homework Help & Tutoring

We offer an array of different online Python Programming tutors, all of whom are advanced in their fields and highly qualified to instruct you.
Python Programming
Send your subject help request Submit your homework problem, or a general tutoring request.
Get quotes from qualified tutors Receive a response from one of our tutors as soon as possible, sometimes within minutes!
Collaborate with your tutor online Work together with your tutor to answer your question within minutes!
Python Programming Tutors Available Now
60 tutors available
Expert25
Le Hoang
(Expert25)
I'm good at Computer Science. I always provide detailed answers to questions that students may have while reading my solutions.
4.8/5(3,971+ sessions)
40 minutes avg response
duova
Alec
(duova)
I am a technologist and teacher with background and expertise in Computer Science, Electrical Engineering, Physics, and Mathematics.
4.9/5(3,183+ sessions)
57 minutes avg response
PhysMath18
Israel
(PhysMath18)
Offering help to undergraduate, graduate, and postgraduate students in subjects involving Math, Physics, and Computation.
5/5(2,968+ sessions)
3 minutes avg response
MathEconTutor
Yasu
(MathEconTutor)
After receiving B.A in Economics from University of Kansas, MathEconTutor earning PhD in Economics from University of Kansas in 2011.
4.4/5(2,187+ sessions)
1 hour avg response
midnitc
Midhun
(midnitc)
10+ yrs experience in MATLAB,MAPLE,Mathematica, Robotics, Mechanics,Dynamics,Image processing,Python,C,C++,Computer Vision
4.6/5(1,092+ sessions)
1 hour avg response
See 60 More Tutors
See what our students are saying
Describe your homework help.

My Info

We’ll send you an email right away. If it’s not in your inbox, please check your spam folder.

Project Info

Describe your Homework Problem

Tutors are more likely to respond if: You provide as much info as possible about your problem. Relevant attachments increase tutor responses 3x. Remember, Customer Support is a click away.

Tutors are more likely to respond if: You provide as much info as possible about your problem. Relevant attachments increase tutor responses 3x. Remember, Customer Support is a click away.

Attaching files will get you a faster response

Lesson Budget (optional)

By providing your budget, we will work on finding the best tutors that can work within it.

$15-$25 per hour $25-$45 per hour $45-$60 per hour $60+ per hour

Get a response in as low as 15min

FAQ Frequently Asked Questions
Can you help me with my homework in less than 24 hours?
Can you help me with my exam/quiz/test?
How much will it cost?
What kind of payments do you accept?

Python Programming

Python is a popular programming language dating back to the early 90s. It is supported by a large number of frameworks, particularly in the web sphere, and designed to maximize code readability. The most recent version is Python 3, which differs from Python 2 due to its improvements that make code easier to write.  As a language, Python is largely used as dynamically typed, object oriented and procedural, but it is multi-paradigm and also supports functional programming and strong typing. It is also reflective, which means Python programs are able to modify themselves during execution. 

Python Private Tutors Online

If you're looking for extra Python help online, there are many platforms and services that you can turn to for help. Whether you need assistance with Python homework or you want to become a more proficient programmer, there are plenty of ways to improve your coding skill set when it comes to Python programming.

One of the most effective strategies for receiving Python help is working with a professional tutor. Tutors can provide individualized guidance to ensure you receive the support you need to become more confident in your programming skills and cultivate the ability to use Python in a variety of applications.

When searching for a Python private tutor online, finding a certified individual with a background in programming is an essential part of improving your education and developing the ability to use these skills in a real-life setting. The right tutor will be able to adapt their instruction for your learning, ensuring that you get the most out of your tutoring and gain more confidence in programming inside and outside the classroom.

Python Programming Homework Help With 24HourAnswers

Whenever you're consulting the internet for additional information, it's essential to confirm the source you're using is trustworthy. With our service, you gain access to a diverse range of highly accredited and qualified python private tutors online, all of whom are reliable and certified. Our tutors are also available around the clock to answer any questions you have about Python programming.

Some of the ways you can use our Python homework help include:

  • Preparing for an upcoming exam or quiz.
  • Asking detailed questions about programming.
  • Getting additional help with Python homework.
  • Inquiring about the different applications for Python programming.
  • Checking your code with a professional programmer.
  • Building more confidence in your Python programming abilities.

In addition to the multiple applications of our programming tutoring services, our highly credentialed tutors will go above and beyond to help you. They can tailor their teaching style for your unique preferences since you'll work with them individually. These one-on-one sessions ensure that you can get the most out of every lesson, giving you all the tools you need to succeed in the classroom.

Receive Python Homework Help Anytime

Because we're available 24 hours a day, you can turn to us for help at any time — even if it's the middle of the night and you need a professional Python programmer to walk you through an assignment or answer a question. As we're an online source of information, you won't have to search for a tutor in your local area, eliminating any obstacles that could prevent you from getting the Python homework help you need.

We're a trusted source for college students due to our unwavering dedication to helping you get the most out of your classes and college-level education.Working with us provides a service you won't get anywhere else, allowing you to gain a comprehensive knowledge of Python programming as you work with one of our qualified tutors.

Python Tutorial Help

Python programs are usually written in .py files. The language is split into a number of implementations, including CPython, Jython and IronPython written in C, Java and C# respectively. These different interpretations add extra pieces of functionality and quirks - such as IronPython is able to make use of the .NET Framework, and JPython integrates with Java classes. The core concepts remain the same.

Having set up your environment or installed an IDE, you are ready to start writing Python applications. You can follow the tutorial below to learn some core operations that can be performed in Python. Note that the lines beginning with # are comments, which means they do not get executed in your application. The best way to learn is to type out these programs yourself (rather than copy-paste) as you’ll get a better feel for what it means to write Python.

# First, let's do a basic print operation

print ("Hello, world!")

If you run this application you’ll see the text string in the brackets gets output to the console. This is because ‘print()’ is a method, and we are calling it with an argument (our text).

We can make this a bit more advanced by introducing variables.

# Create a variable and print it

name = "Dave"

print ("Hello " + name)

The + operator when used on text strings concatenates them. As a result, we will see an output based on the constant “Hello “ being joined with the name in the variable. If, however, we add numbers together we will instead perform a mathematical operation:

# Let's do some sums

print (1 + 2)

print (1 - 2)

print (9 / 3)

print (2 * 5)

# Two *s raises the number before to the power of the number after

print ((2 * 5) ** 2)

One thing you’ll notice is that the division operator converts the result to a floating point number (3.0) whereas the other operations remain as integers.  If, however, you use a floating point number in the calculation you’ll create a floating point result, as in this example:

# Output will be 10.0, not 10

print (2.0 * 5)

We briefly touched on variables before. It is important to assign values to a variable before you use it, or you will receive an error:

# This is OK

myVariable = 3

print (myVariable)

# This is not

print (aNewVariable)

We can also do conditional operations on our variables. Note that the indentation is used to separate code blocks, and until we de-indent our program, we continue to operate inside the ‘if’ block.

# The interior statements will execute as myVariable (3) is

# greater than or equal to 3

if myVariable >= 3:

    print ("Condition passed")

    print ("myVariable is more than 2")

# As a result, this won't execute

else:

    print ("Condition failed")

    print ("myVariable is less than 3")

In this next example we’ll create a list by using square brackets and then iterate over it by using the ‘for’ keyword. This extracts each value in the list, and puts it in the variable ‘number’ before executing the block of code within the 'for' loop. Then the code moves on to the next item in the list:

# Let's count!

for number in [1,2,3,4,5]:

    print(number)

The Python code you encounter in the world will be comprised of these elements - methods, loops, conditions and variables. Understanding these fundamentals is core to being able to move on to more advanced concepts and frameworks, as well as being able to read and write your own Python applications.

Reach out for Python Private Tutoring Online

To learn why our Python help is so effective, schedule a session with our Python private tutors today. Unlike other online sources, our tutors can be trusted to fulfill multiple needs and enhance your education. With their experienced backgrounds and advanced degrees in coding, they'll make sure you receive the accurate information and coding advice you're looking for. 

Whether you're just starting out or you're an advanced Python programmer, we have a tutor that can help you master your Python programming coursework. If you're stuck on a question, submit your homework and one of our tutors will help you solve it! If you just want some extra help, contact a Python programming tutor for a live tutoring session. We also have a homework library so that you can get some extra homework practice whenever you need it.  

To fulfill our tutoring mission of online education, our college homework help and online tutoring centers are standing by 24/7, ready to assist college students who need homework help with all aspects of Python programming. Our computer science tutors can help with all your projects, large or small, and we challenge you to find better online Python programming tutoring anywhere.

 

Read More

College Python Programming Homework Help

Since we have tutors in all Python Programming related topics, we can provide a range of different services. Our online Python Programming tutors will:

  • Provide specific insight for homework assignments.
  • Review broad conceptual ideas and chapters.
  • Simplify complex topics into digestible pieces of information.
  • Answer any Python Programming related questions.
  • Tailor instruction to fit your style of learning.

With these capabilities, our college Python Programming tutors will give you the tools you need to gain a comprehensive knowledge of Python Programming you can use in future courses.

24HourAnswers Online Python Programming Tutors

Our tutors are just as dedicated to your success in class as you are, so they are available around the clock to assist you with questions, homework, exam preparation and any Python Programming related assignments you need extra help completing.

In addition to gaining access to highly qualified tutors, you'll also strengthen your confidence level in the classroom when you work with us. This newfound confidence will allow you to apply your Python Programming knowledge in future courses and keep your education progressing smoothly.

Because our college Python Programming tutors are fully remote, seeking their help is easy. Rather than spend valuable time trying to find a local Python Programming tutor you can trust, just call on our tutors whenever you need them without any conflicting schedules getting in the way.

Start Working With Our College Python Programming Tutors
To fulfill our tutoring mission of online education, our college homework help and online tutoring centers are standing by 24/7, ready to assist college students who need homework help with all aspects of Python Programming.
8.1.0PHP Version451msRequest Duration45MBMemory UsageGET subjects/{categoryUri}/{subjectUri?}Route
    • Booting (189ms)time
    • Application (261ms)time
    • 1 x Application (57.97%)
      261ms
      1 x Booting (42.01%)
      189ms
      • Illuminate\Routing\Events\Routing (914μs)
      • Illuminate\Routing\Events\RouteMatched (362μs)
      • Illuminate\Foundation\Events\LocaleUpdated (3.78ms)
      • eloquent.booting: App\Models\Subject (171μs)
      • eloquent.booted: App\Models\Subject (46μs)
      • Illuminate\Database\Events\ConnectionEstablished (785μs)
      • Illuminate\Database\Events\StatementPrepared (17.4ms)
      • Illuminate\Database\Events\QueryExecuted (1.23ms)
      • eloquent.retrieved: App\Models\Subject (102μs)
      • eloquent.booting: App\Models\SubjectCat (122μs)
      • eloquent.booted: App\Models\SubjectCat (40μs)
      • Illuminate\Database\Events\StatementPrepared (754μs)
      • Illuminate\Database\Events\QueryExecuted (866μs)
      • eloquent.retrieved: App\Models\SubjectCat (92μs)
      • Illuminate\Cache\Events\CacheHit (616μs)
      • Illuminate\Cache\Events\CacheHit (383μs)
      • creating: subjects.show (125μs)
      • composing: subjects.show (175μs)
      • creating: components.breadcrumbs (243μs)
      • composing: components.breadcrumbs (121μs)
      • creating: site.blocks.how-it-works (219μs)
      • composing: site.blocks.how-it-works (14μs)
      • creating: site.blocks.subject-tutors (90μs)
      • composing: site.blocks.subject-tutors (11μs)
      • eloquent.booting: App\Models\User\Tutor (391μs)
      • eloquent.booted: App\Models\User\Tutor (164μs)
      • Illuminate\Database\Events\ConnectionEstablished (395μs)
      • Illuminate\Database\Events\StatementPrepared (6.19ms)
      • Illuminate\Database\Events\QueryExecuted (753μs)
      • Illuminate\Database\Events\StatementPrepared (797μs)
      • Illuminate\Database\Events\QueryExecuted (10.99ms)
      • eloquent.retrieved: App\Models\User\Tutor (99μs)
      • eloquent.retrieved: App\Models\User\Tutor (20μs)
      • eloquent.retrieved: App\Models\User\Tutor (13μs)
      • eloquent.retrieved: App\Models\User\Tutor (10μs)
      • eloquent.retrieved: App\Models\User\Tutor (10μs)
      • eloquent.retrieved: App\Models\User\Tutor (10μs)
      • creating: components.tutors-cards (210μs)
      • composing: components.tutors-cards (81μs)
      • creating: components.tutors-card (189μs)
      • composing: components.tutors-card (60μs)
      • eloquent.booting: App\Models\User\TutorAttributes\TutorDegree (333μs)
      • eloquent.booted: App\Models\User\TutorAttributes\TutorDegree (42μs)
      • Illuminate\Database\Events\StatementPrepared (1.38ms)
      • Illuminate\Database\Events\QueryExecuted (759μs)
      • Illuminate\Cache\Events\CacheHit (360μs)
      • Illuminate\Cache\Events\CacheHit (1.87ms)
      • Illuminate\Cache\Events\CacheHit (1.15ms)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (137μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (102μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (143μs)
      • Illuminate\Cache\Events\CacheHit (173μs)
      • Illuminate\Cache\Events\CacheHit (129μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (125μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (133μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (136μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (131μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (115μ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 (94μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (137μs)
      • Illuminate\Cache\Events\CacheHit (129μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (223μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (141μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (102μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (125μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • creating: components.tutors-card (718μs)
      • composing: components.tutors-card (47μs)
      • Illuminate\Database\Events\StatementPrepared (1.07ms)
      • Illuminate\Database\Events\QueryExecuted (739μs)
      • Illuminate\Cache\Events\CacheHit (515μs)
      • Illuminate\Cache\Events\CacheHit (849μs)
      • Illuminate\Cache\Events\CacheHit (462μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (160μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (124μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (151μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (157μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (133μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (236μs)
      • Illuminate\Cache\Events\CacheHit (136μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (134μs)
      • Illuminate\Cache\Events\CacheHit (101μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (273μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (132μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • creating: components.tutors-card (385μs)
      • composing: components.tutors-card (44μs)
      • Illuminate\Database\Events\StatementPrepared (959μs)
      • Illuminate\Database\Events\QueryExecuted (739μs)
      • Illuminate\Cache\Events\CacheMissed (3.66ms)
      • Illuminate\Cache\Events\CacheMissed (9.38ms)
      • Illuminate\Database\Events\StatementPrepared (1.27ms)
      • Illuminate\Database\Events\QueryExecuted (10.39ms)
      • eloquent.retrieved: App\Models\Subject (93μs)
      • eloquent.retrieved: App\Models\Subject (15μs)
      • eloquent.retrieved: App\Models\Subject (7μs)
      • eloquent.retrieved: App\Models\Subject (7μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (4μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (4μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (4μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (4μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (4μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (4μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (4μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (1.1ms)
      • eloquent.retrieved: App\Models\Subject (17μs)
      • eloquent.retrieved: App\Models\Subject (7μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (7μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (8μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (7μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (6μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • eloquent.retrieved: App\Models\Subject (5μs)
      • Illuminate\Database\Events\StatementPrepared (944μs)
      • Illuminate\Database\Events\QueryExecuted (7.48ms)
      • eloquent.retrieved: App\Models\SubjectCat (139μs)
      • eloquent.retrieved: App\Models\SubjectCat (16μs)
      • eloquent.retrieved: App\Models\SubjectCat (9μs)
      • eloquent.retrieved: App\Models\SubjectCat (7μs)
      • eloquent.retrieved: App\Models\SubjectCat (5μs)
      • eloquent.retrieved: App\Models\SubjectCat (6μs)
      • eloquent.retrieved: App\Models\SubjectCat (5μs)
      • eloquent.retrieved: App\Models\SubjectCat (6μs)
      • Illuminate\Cache\Events\KeyWritten (18.7ms)
      • Illuminate\Cache\Events\KeyWritten (1.43ms)
      • Illuminate\Cache\Events\CacheHit (7.06ms)
      • Illuminate\Cache\Events\CacheHit (887μs)
      • Illuminate\Cache\Events\CacheHit (134μs)
      • Illuminate\Cache\Events\CacheHit (125μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (146μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (439μs)
      • Illuminate\Cache\Events\CacheHit (1.06ms)
      • Illuminate\Cache\Events\CacheHit (3.94ms)
      • Illuminate\Cache\Events\CacheHit (300μs)
      • Illuminate\Cache\Events\CacheHit (155μs)
      • Illuminate\Cache\Events\CacheHit (135μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (135μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (1.36ms)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (148μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (101μs)
      • Illuminate\Cache\Events\CacheHit (134μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (149μs)
      • Illuminate\Cache\Events\CacheHit (150μs)
      • Illuminate\Cache\Events\CacheHit (131μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (349μs)
      • Illuminate\Cache\Events\CacheHit (357μs)
      • Illuminate\Cache\Events\CacheHit (943μs)
      • Illuminate\Cache\Events\CacheHit (146μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (132μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (124μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (92μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (101μs)
      • Illuminate\Cache\Events\CacheHit (131μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (275μs)
      • Illuminate\Cache\Events\CacheHit (130μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (93μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (125μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (664μs)
      • Illuminate\Cache\Events\CacheHit (137μs)
      • Illuminate\Cache\Events\CacheHit (133μs)
      • Illuminate\Cache\Events\CacheHit (134μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (125μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (201μs)
      • Illuminate\Cache\Events\CacheHit (138μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheMissed (1.15ms)
      • Illuminate\Database\Events\StatementPrepared (802μs)
      • Illuminate\Database\Events\QueryExecuted (895μs)
      • eloquent.retrieved: App\Models\SubjectCat (66μs)
      • Illuminate\Cache\Events\KeyWritten (272μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (150μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (102μs)
      • Illuminate\Cache\Events\CacheHit (140μs)
      • Illuminate\Cache\Events\CacheHit (210μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • creating: components.tutors-card (766μs)
      • composing: components.tutors-card (50μs)
      • Illuminate\Database\Events\StatementPrepared (886μs)
      • Illuminate\Database\Events\QueryExecuted (704μs)
      • Illuminate\Cache\Events\CacheHit (1.64ms)
      • Illuminate\Cache\Events\CacheHit (3.44ms)
      • Illuminate\Cache\Events\CacheHit (583μs)
      • Illuminate\Cache\Events\CacheHit (146μs)
      • Illuminate\Cache\Events\CacheHit (133μs)
      • Illuminate\Cache\Events\CacheHit (212μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (209μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (132μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (102μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (132μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (200μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (232μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • creating: components.tutors-card (374μs)
      • composing: components.tutors-card (43μs)
      • Illuminate\Database\Events\StatementPrepared (3.14ms)
      • Illuminate\Database\Events\QueryExecuted (838μs)
      • Illuminate\Cache\Events\CacheHit (1.47ms)
      • Illuminate\Cache\Events\CacheHit (3.88ms)
      • Illuminate\Cache\Events\CacheHit (307μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (142μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (195μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (124μs)
      • Illuminate\Cache\Events\CacheHit (210μs)
      • Illuminate\Cache\Events\CacheHit (134μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (158μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (102μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (103μs)
      • creating: components.tutors-card (345μs)
      • composing: components.tutors-card (43μs)
      • Illuminate\Database\Events\StatementPrepared (1ms)
      • Illuminate\Database\Events\QueryExecuted (712μs)
      • Illuminate\Cache\Events\CacheHit (1.72ms)
      • Illuminate\Cache\Events\CacheHit (5.71ms)
      • Illuminate\Cache\Events\CacheHit (493μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (136μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (198μs)
      • Illuminate\Cache\Events\CacheHit (1.39ms)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (154μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (148μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (101μs)
      • Illuminate\Cache\Events\CacheHit (248μs)
      • Illuminate\Cache\Events\CacheHit (182μs)
      • Illuminate\Cache\Events\CacheHit (148μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (130μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (124μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (124μs)
      • Illuminate\Cache\Events\CacheHit (95μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (160μs)
      • Illuminate\Cache\Events\CacheHit (147μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (102μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (216μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (133μs)
      • Illuminate\Cache\Events\CacheHit (206μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • creating: site.blocks.subject-homework (603μs)
      • composing: site.blocks.subject-homework (16μs)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (367μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (150μs)
      • Illuminate\Database\Events\StatementPrepared (963μs)
      • Illuminate\Database\Events\QueryExecuted (919μs)
      • Illuminate\Database\Events\StatementPrepared (1.11ms)
      • Illuminate\Database\Events\QueryExecuted (11.07ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (98μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (15μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (9μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (7μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (6μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (6μs)
      • Illuminate\Database\Events\StatementPrepared (945μs)
      • Illuminate\Database\Events\QueryExecuted (773μs)
      • eloquent.retrieved: App\Models\Subject (135μs)
      • Illuminate\Database\Events\StatementPrepared (589μs)
      • Illuminate\Database\Events\QueryExecuted (996μs)
      • eloquent.retrieved: App\Models\SubjectCat (65μs)
      • creating: components.homework-blocks (181μs)
      • composing: components.homework-blocks (75μs)
      • creating: site.blocks.reviews (632μs)
      • composing: site.blocks.reviews (15μs)
      • creating: site.blocks.submit-homework (108μs)
      • composing: site.blocks.submit-homework (12μs)
      • creating: site.blocks.faq (73μs)
      • composing: site.blocks.faq (11μs)
      • eloquent.booting: App\Models\Twill\TwillFaq (280μs)
      • eloquent.booted: App\Models\Twill\TwillFaq (124μs)
      • eloquent.booting: App\Models\Twill\Slugs\TwillFaqSlug (160μs)
      • eloquent.booted: App\Models\Twill\Slugs\TwillFaqSlug (46μs)
      • Illuminate\Database\Events\StatementPrepared (838μs)
      • Illuminate\Database\Events\QueryExecuted (758μs)
      • eloquent.retrieved: App\Models\Twill\TwillFaq (93μs)
      • Illuminate\Database\Events\StatementPrepared (687μs)
      • Illuminate\Database\Events\QueryExecuted (674μs)
      • eloquent.retrieved: App\Models\Twill\Slugs\TwillFaqSlug (62μs)
      • eloquent.retrieved: App\Models\Twill\Slugs\TwillFaqSlug (15μs)
      • creating: components.faq-item (94μs)
      • composing: components.faq-item (67μs)
      • Illuminate\Database\Events\StatementPrepared (959μs)
      • Illuminate\Database\Events\QueryExecuted (707μs)
      • eloquent.retrieved: App\Models\Twill\TwillFaq (66μs)
      • Illuminate\Database\Events\StatementPrepared (580μs)
      • Illuminate\Database\Events\QueryExecuted (745μs)
      • eloquent.retrieved: App\Models\Twill\Slugs\TwillFaqSlug (47μs)
      • eloquent.retrieved: App\Models\Twill\Slugs\TwillFaqSlug (13μs)
      • creating: components.faq-item (48μs)
      • composing: components.faq-item (24μs)
      • Illuminate\Database\Events\StatementPrepared (886μs)
      • Illuminate\Database\Events\QueryExecuted (716μs)
      • eloquent.retrieved: App\Models\Twill\TwillFaq (65μs)
      • Illuminate\Database\Events\StatementPrepared (581μs)
      • Illuminate\Database\Events\QueryExecuted (651μs)
      • eloquent.retrieved: App\Models\Twill\Slugs\TwillFaqSlug (47μs)
      • creating: components.faq-item (59μs)
      • composing: components.faq-item (26μs)
      • Illuminate\Database\Events\StatementPrepared (1.08ms)
      • Illuminate\Database\Events\QueryExecuted (682μs)
      • eloquent.retrieved: App\Models\Twill\TwillFaq (65μs)
      • Illuminate\Database\Events\StatementPrepared (600μs)
      • Illuminate\Database\Events\QueryExecuted (795μs)
      • eloquent.retrieved: App\Models\Twill\Slugs\TwillFaqSlug (50μs)
      • creating: components.faq-item (49μs)
      • composing: components.faq-item (26μs)
      • creating: site.blocks.text-with-image (199μs)
      • composing: site.blocks.text-with-image (14μs)
      • creating: site.blocks.work-with-tutors (127μs)
      • composing: site.blocks.work-with-tutors (12μs)
      • creating: site.layouts.app (172μs)
      • composing: site.layouts.app (12μs)
      • creating: components.canonical (305μs)
      • composing: components.canonical (124μs)
      • creating: components.open-graph (151μs)
      • composing: components.open-graph (66μs)
      • creating: site.headers.header (234μs)
      • composing: site.headers.header (47μs)
      • Illuminate\Cache\Events\CacheHit (1.25ms)
      • creating: components.footer (57μs)
      • composing: components.footer (59μs)
      • Illuminate\Cache\Events\CacheHit (591μs)
      • Illuminate\Cache\Events\CacheHit (222μs)
      • Illuminate\Cache\Events\CacheHit (258μs)
      • Illuminate\Cache\Events\CacheHit (130μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (393μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • creating: components.forms.contact-us (178μs)
      • composing: components.forms.contact-us (95μs)
      • creating: components.forms.get-started (105μs)
      • composing: components.forms.get-started (44μs)
      • creating: components.forms.free-tool-download (84μs)
      • composing: components.forms.free-tool-download (39μs)
      • creating: components.forms.claim-free-worksheet (80μs)
      • composing: components.forms.claim-free-worksheet (38μs)
      • creating: components.forms.tutor-subscription-waitlist (80μs)
      • composing: components.forms.tutor-subscription-waitlist (37μs)
      • creating: components.forms.tutor-subscription-join (77μs)
      • composing: components.forms.tutor-subscription-join (36μs)
      • creating: components.forms.tutor-support (77μs)
      • composing: components.forms.tutor-support (37μs)
      • 467 x Illuminate\Cache\Events\CacheHit (21.92%)
        98.76ms
        25 x Illuminate\Database\Events\QueryExecuted (12.56%)
        56.58ms
        25 x Illuminate\Database\Events\StatementPrepared (10.3%)
        46.42ms
        3 x Illuminate\Cache\Events\KeyWritten (4.53%)
        20.40ms
        3 x Illuminate\Cache\Events\CacheMissed (3.15%)
        14.19ms
        1 x Illuminate\Foundation\Events\LocaleUpdated (0.84%)
        3.78ms
        6 x creating: components.tutors-card (0.62%)
        2.78ms
        87 x eloquent.retrieved: App\Models\Subject (0.42%)
        1.88ms
        2 x Illuminate\Database\Events\ConnectionEstablished (0.26%)
        1.18ms
        1 x Illuminate\Routing\Events\Routing (0.2%)
        914μs
        1 x creating: site.blocks.reviews (0.14%)
        632μs
        1 x creating: site.blocks.subject-homework (0.13%)
        603μs
        11 x eloquent.retrieved: App\Models\SubjectCat (0.09%)
        416μs
        1 x eloquent.booting: App\Models\User\Tutor (0.09%)
        391μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (0.08%)
        367μs
        1 x Illuminate\Routing\Events\RouteMatched (0.08%)
        362μs
        1 x eloquent.booting: App\Models\User\TutorAttributes\TutorDegree (0.07%)
        333μs
        1 x creating: components.canonical (0.07%)
        305μs
        4 x eloquent.retrieved: App\Models\Twill\TwillFaq (0.06%)
        289μs
        6 x composing: components.tutors-card (0.06%)
        287μs
        1 x eloquent.booting: App\Models\Twill\TwillFaq (0.06%)
        280μs
        4 x creating: components.faq-item (0.06%)
        250μs
        1 x creating: components.breadcrumbs (0.05%)
        243μs
        6 x eloquent.retrieved: App\Models\Twill\Slugs\TwillFaqSlug (0.05%)
        234μs
        1 x creating: site.headers.header (0.05%)
        234μs
        1 x creating: site.blocks.how-it-works (0.05%)
        219μs
        1 x creating: components.tutors-cards (0.05%)
        210μs
        1 x creating: site.blocks.text-with-image (0.04%)
        199μs
        1 x creating: components.homework-blocks (0.04%)
        181μs
        1 x creating: components.forms.contact-us (0.04%)
        178μs
        1 x composing: subjects.show (0.04%)
        175μs
        1 x creating: site.layouts.app (0.04%)
        172μs
        1 x eloquent.booting: App\Models\Subject (0.04%)
        171μs
        1 x eloquent.booted: App\Models\User\Tutor (0.04%)
        164μs
        6 x eloquent.retrieved: App\Models\User\Tutor (0.04%)
        162μs
        1 x eloquent.booting: App\Models\Twill\Slugs\TwillFaqSlug (0.04%)
        160μs
        1 x creating: components.open-graph (0.03%)
        151μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (0.03%)
        150μs
        4 x composing: components.faq-item (0.03%)
        143μs
        6 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (0.03%)
        141μs
        1 x creating: site.blocks.work-with-tutors (0.03%)
        127μs
        1 x creating: subjects.show (0.03%)
        125μs
        1 x eloquent.booted: App\Models\Twill\TwillFaq (0.03%)
        124μs
        1 x composing: components.canonical (0.03%)
        124μs
        1 x eloquent.booting: App\Models\SubjectCat (0.03%)
        122μs
        1 x composing: components.breadcrumbs (0.03%)
        121μs
        1 x creating: site.blocks.submit-homework (0.02%)
        108μs
        1 x creating: components.forms.get-started (0.02%)
        105μs
        1 x composing: components.forms.contact-us (0.02%)
        95μs
        1 x creating: site.blocks.subject-tutors (0.02%)
        90μs
        1 x creating: components.forms.free-tool-download (0.02%)
        84μs
        1 x composing: components.tutors-cards (0.02%)
        81μs
        1 x creating: components.forms.claim-free-worksheet (0.02%)
        80μs
        1 x creating: components.forms.tutor-subscription-waitlist (0.02%)
        80μs
        1 x creating: components.forms.tutor-subscription-join (0.02%)
        77μs
        1 x creating: components.forms.tutor-support (0.02%)
        77μs
        1 x composing: components.homework-blocks (0.02%)
        75μs
        1 x creating: site.blocks.faq (0.02%)
        73μs
        1 x composing: components.open-graph (0.01%)
        66μs
        1 x composing: components.footer (0.01%)
        59μs
        1 x creating: components.footer (0.01%)
        57μs
        1 x composing: site.headers.header (0.01%)
        47μs
        1 x eloquent.booted: App\Models\Subject (0.01%)
        46μs
        1 x eloquent.booted: App\Models\Twill\Slugs\TwillFaqSlug (0.01%)
        46μs
        1 x composing: components.forms.get-started (0.01%)
        44μs
        1 x eloquent.booted: App\Models\User\TutorAttributes\TutorDegree (0.01%)
        42μs
        1 x eloquent.booted: App\Models\SubjectCat (0.01%)
        40μs
        1 x composing: components.forms.free-tool-download (0.01%)
        39μs
        1 x composing: components.forms.claim-free-worksheet (0.01%)
        38μs
        1 x composing: components.forms.tutor-subscription-waitlist (0.01%)
        37μs
        1 x composing: components.forms.tutor-support (0.01%)
        37μs
        1 x composing: components.forms.tutor-subscription-join (0.01%)
        36μs
        1 x composing: site.blocks.subject-homework (0%)
        16μs
        1 x composing: site.blocks.reviews (0%)
        15μs
        1 x composing: site.blocks.how-it-works (0%)
        14μs
        1 x composing: site.blocks.text-with-image (0%)
        14μs
        1 x composing: site.blocks.work-with-tutors (0%)
        12μs
        1 x composing: site.layouts.app (0%)
        12μs
        1 x composing: site.blocks.submit-homework (0%)
        12μs
        1 x composing: site.blocks.subject-tutors (0%)
        11μs
        1 x composing: site.blocks.faq (0%)
        11μs
      34 templates were rendered
      • 1x subjects.showshow.blade.phpblade
      • 1x components.breadcrumbsbreadcrumbs.blade.phpblade
      • 1x site.blocks.how-it-workshow-it-works.blade.phpblade
      • 1x site.blocks.subject-tutorssubject-tutors.blade.phpblade
      • 1x components.tutors-cardstutors-cards.blade.phpblade
      • 6x components.tutors-cardtutors-card.blade.phpblade
      • 1x site.blocks.subject-homeworksubject-homework.blade.phpblade
      • 1x components.homework-blockshomework-blocks.blade.phpblade
      • 1x site.blocks.reviewsreviews.blade.phpblade
      • 1x site.blocks.submit-homeworksubmit-homework.blade.phpblade
      • 1x site.blocks.faqfaq.blade.phpblade
      • 4x components.faq-itemfaq-item.blade.phpblade
      • 1x site.blocks.text-with-imagetext-with-image.blade.phpblade
      • 1x site.blocks.work-with-tutorswork-with-tutors.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 subjects/{categoryUri}/{subjectUri?}
      middleware
      web, utm.parameters
      controller
      App\Http\Controllers\SubjectController@show
      namespace
      where
      as
      subjects.show
      file
      app/Http/Controllers/SubjectController.php:43-96
      25 statements were executed, 2 of which were duplicates, 23 unique. Show only duplicated86.91ms
      • Connection Establishedtwenty4_siteSubjectRepository.php#123
        Backtrace
        • 13. app/Repositories/SubjectRepository.php:123
        • 14. app/Http/Controllers/SubjectController.php:54
        • 15. vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 16. vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
        • 17. vendor/laravel/framework/src/Illuminate/Routing/Route.php:260
      • select * from `subjects` where `urlFriendlyTitle` = 'Python-Programming' limit 1
        17.3mstwenty4_siteSubjectRepository.php#123
        Bindings
        • 0: Python-Programming
        Backtrace
        • 15. app/Repositories/SubjectRepository.php:123
        • 16. app/Http/Controllers/SubjectController.php:54
        • 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
      • select * from `subject_cats` where `subject_cats`.`id` in (3)
        1.05mstwenty4_siteSubjectRepository.php#123
        Backtrace
        • 20. app/Repositories/SubjectRepository.php:123
        • 21. app/Http/Controllers/SubjectController.php:54
        • 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
      • Connection Establishedtwenty4_siteTutorRepository.php#40
        Backtrace
        • 13. app/Repositories/TutorRepository.php:40
        • 14. app/View/Components/TutorsCards.php:28
        • 15. app/View/Components/TutorsCards.php:22
        • 17. vendor/laravel/framework/src/Illuminate/Container/Container.php:929
        • 18. vendor/laravel/framework/src/Illuminate/Container/Container.php:770
      • select count(*) as aggregate from `users` where (`subjectsQualified` like '%|259|%' or `DSF_subjectsQualified` like '%|259|%' or `allsubjects` = 1) and `disable_profile` = 0 and `picture` != '' and `solutionrequestQualified` = 1 and `is_suspended` = 0 and `is_deactivated` = 0 and `status` != '' and `status` = 'tutor'
        6.3mstwenty4_siteTutorsCards.php#35
        Bindings
        • 0: %|259|%
        • 1: %|259|%
        • 2: 1
        • 3: 0
        • 4: 
        • 5: 1
        • 6: 0
        • 7: 0
        • 8: 
        • 9: tutor
        Backtrace
        • 15. app/View/Components/TutorsCards.php:35
        • 16. app/View/Components/TutorsCards.php:22
        • 18. vendor/laravel/framework/src/Illuminate/Container/Container.php:929
        • 19. vendor/laravel/framework/src/Illuminate/Container/Container.php:770
        • 20. vendor/laravel/framework/src/Illuminate/Foundation/Application.php:933
      • select * from `users` where (`subjectsQualified` like '%|259|%' or `DSF_subjectsQualified` like '%|259|%' or `allsubjects` = 1) and `disable_profile` = 0 and `picture` != '' and `solutionrequestQualified` = 1 and `is_suspended` = 0 and `is_deactivated` = 0 and `status` != '' and `status` = 'tutor' order by `completed_requests` desc limit 6 offset 0
        11.3mstwenty4_siteTutorsCards.php#35
        Bindings
        • 0: %|259|%
        • 1: %|259|%
        • 2: 1
        • 3: 0
        • 4: 
        • 5: 1
        • 6: 0
        • 7: 0
        • 8: 
        • 9: tutor
        Backtrace
        • 15. app/View/Components/TutorsCards.php:35
        • 16. app/View/Components/TutorsCards.php:22
        • 18. vendor/laravel/framework/src/Illuminate/Container/Container.php:929
        • 19. vendor/laravel/framework/src/Illuminate/Container/Container.php:770
        • 20. vendor/laravel/framework/src/Illuminate/Foundation/Application.php:933
      • select * from `tutor_degrees` where `tutor_degrees`.`tutor_id` = 10818 and `tutor_degrees`.`tutor_id` is not null order by `year` desc limit 1
        1.64mstwenty4_siteTutor.php#361
        Bindings
        • 0: 10818
        Backtrace
        • 18. app/Models/User/Tutor.php:361
        • 19. view::components.tutors-card:11
        • 21. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 22. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 23. vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
      • select * from `tutor_degrees` where `tutor_degrees`.`tutor_id` = 54885 and `tutor_degrees`.`tutor_id` is not null order by `year` desc limit 1
        1.06mstwenty4_siteTutor.php#361
        Bindings
        • 0: 54885
        Backtrace
        • 18. app/Models/User/Tutor.php:361
        • 19. view::components.tutors-card:11
        • 21. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 22. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 23. vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
      • select * from `tutor_degrees` where `tutor_degrees`.`tutor_id` = 76351 and `tutor_degrees`.`tutor_id` is not null order by `year` desc limit 1
        1.04mstwenty4_siteTutor.php#361
        Bindings
        • 0: 76351
        Backtrace
        • 18. app/Models/User/Tutor.php:361
        • 19. view::components.tutors-card:11
        • 21. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 22. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 23. vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
      • select `subjects`.*, `subject_cats`.`title` as `category_title`, `subject_cats`.`id` as `category_id` from `subjects` inner join `subject_cats` on `subject_cats`.`id` = `subjects`.`catID` where `subjects`.`id` in (515, 459, 516, 517, 169, 20, 324, 388, 168, 158, 129, 16, 142, 15, 130, 394, 512, 440, 72, 259, 251, 346, 52, 227, 49, 135, 150, 161, 246, 119, 245, 34, 134, 2, 160, 133, 1, 6, 127, 123, 229, 70, 10, 122, 257, 220, 126, 124, 65, 7, 3, 349, 9, 396, 66, 125, 68, 47, 73, 348, 41, 8, 71, 347, 67, 48, 299, 121, 4, 223, 417, 401, 325, 479, 379, 397, 226, 327, 501, 116, 147, 89, 446, 88, 269)
        10.57mstwenty4_siteTutor.php#214
        Bindings
        • 0: 515
        • 1: 459
        • 2: 516
        • 3: 517
        • 4: 169
        • 5: 20
        • 6: 324
        • 7: 388
        • 8: 168
        • 9: 158
        • 10: 129
        • 11: 16
        • 12: 142
        • 13: 15
        • 14: 130
        • 15: 394
        • 16: 512
        • 17: 440
        • 18: 72
        • 19: 259
        • 20: 251
        • 21: 346
        • 22: 52
        • 23: 227
        • 24: 49
        • 25: 135
        • 26: 150
        • 27: 161
        • 28: 246
        • 29: 119
        • 30: 245
        • 31: 34
        • 32: 134
        • 33: 2
        • 34: 160
        • 35: 133
        • 36: 1
        • 37: 6
        • 38: 127
        • 39: 123
        • 40: 229
        • 41: 70
        • 42: 10
        • 43: 122
        • 44: 257
        • 45: 220
        • 46: 126
        • 47: 124
        • 48: 65
        • 49: 7
        • 50: 3
        • 51: 349
        • 52: 9
        • 53: 396
        • 54: 66
        • 55: 125
        • 56: 68
        • 57: 47
        • 58: 73
        • 59: 348
        • 60: 41
        • 61: 8
        • 62: 71
        • 63: 347
        • 64: 67
        • 65: 48
        • 66: 299
        • 67: 121
        • 68: 4
        • 69: 223
        • 70: 417
        • 71: 401
        • 72: 325
        • 73: 479
        • 74: 379
        • 75: 397
        • 76: 226
        • 77: 327
        • 78: 501
        • 79: 116
        • 80: 147
        • 81: 89
        • 82: 446
        • 83: 88
        • 84: 269
        Backtrace
        • 14. app/Models/User/Tutor.php:214
        • 15. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 16. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 18. app/Models/User/Tutor.php:216
        • 24. app/Models/User/Tutor.php:267
      • select * from `subject_cats` where `subject_cats`.`id` in (1, 3, 4, 9, 10, 34, 36, 42)
        7.71mstwenty4_siteTutor.php#214
        Backtrace
        • 19. app/Models/User/Tutor.php:214
        • 20. vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 21. vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:419
        • 23. app/Models/User/Tutor.php:216
        • 29. app/Models/User/Tutor.php:267
      • select * from `subject_cats` where `subject_cats`.`id` = 42 limit 1
        1.17mstwenty4_siteSubject.php#100
        Bindings
        • 0: 42
        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 `tutor_degrees` where `tutor_degrees`.`tutor_id` = 7556 and `tutor_degrees`.`tutor_id` is not null order by `year` desc limit 1
        910μstwenty4_siteTutor.php#361
        Bindings
        • 0: 7556
        Backtrace
        • 18. app/Models/User/Tutor.php:361
        • 19. view::components.tutors-card:11
        • 21. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 22. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 23. vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
      • select * from `tutor_degrees` where `tutor_degrees`.`tutor_id` = 73771 and `tutor_degrees`.`tutor_id` is not null order by `year` desc limit 1
        3.33mstwenty4_siteTutor.php#361
        Bindings
        • 0: 73771
        Backtrace
        • 18. app/Models/User/Tutor.php:361
        • 19. view::components.tutors-card:11
        • 21. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 22. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 23. vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
      • select * from `tutor_degrees` where `tutor_degrees`.`tutor_id` = 2494 and `tutor_degrees`.`tutor_id` is not null order by `year` desc limit 1
        1.01mstwenty4_siteTutor.php#361
        Bindings
        • 0: 2494
        Backtrace
        • 18. app/Models/User/Tutor.php:361
        • 19. view::components.tutors-card:11
        • 21. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 22. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 23. vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
      • select count(*) as aggregate from `solutionslibrary` where exists (select * from `subjects` where `solutionslibrary`.`subject` = `subjects`.`id`) and `subject` = 259 and `status` = 'published' and `price` > 0
        1.04mstwenty4_siteHomeworkBlocks.php#27
        Bindings
        • 0: 259
        • 1: published
        • 2: 0
        Backtrace
        • 15. app/View/Components/HomeworkBlocks.php:27
        • 16. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 17. view::site.blocks.subject-homework:4
        • 19. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 20. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `solutionslibrary` where exists (select * from `subjects` where `solutionslibrary`.`subject` = `subjects`.`id`) and `subject` = 259 and `status` = 'published' and `price` > 0 order by `purchase_count` desc limit 6 offset 0
        11.71mstwenty4_siteHomeworkBlocks.php#27
        Bindings
        • 0: 259
        • 1: published
        • 2: 0
        Backtrace
        • 15. app/View/Components/HomeworkBlocks.php:27
        • 16. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 17. view::site.blocks.subject-homework:4
        • 19. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 20. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `subjects` where `subjects`.`id` in (259)
        1.28mstwenty4_siteHomeworkBlocks.php#27
        Backtrace
        • 20. app/View/Components/HomeworkBlocks.php:27
        • 21. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 22. view::site.blocks.subject-homework:4
        • 24. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 25. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `subject_cats` where `subject_cats`.`id` in (3)
        1.14mstwenty4_siteHomeworkBlocks.php#27
        Backtrace
        • 25. app/View/Components/HomeworkBlocks.php:27
        • 26. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 27. view::site.blocks.subject-homework:4
        • 29. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 30. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `twill_faqs` where exists (select * from `twill_faq_slugs` where `twill_faqs`.`id` = `twill_faq_slugs`.`twill_faq_id` and `slug` = 'can-you-help-me-with-my-homework-in-less-than-24-hours' and `active` = 1 and `locale` = 'en' and `twill_faq_slugs`.`deleted_at` is null) and `twill_faqs`.`deleted_at` is null limit 1
        1mstwenty4_siteFaqItem.php#15
        Bindings
        • 0: can-you-help-me-with-my-homework-in-less-than-24-hours
        • 1: 1
        • 2: en
        Backtrace
        • 15. app/View/Components/FaqItem.php:15
        • 16. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 17. view::site.blocks.faq:7
        • 19. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 20. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `twill_faq_slugs` where `twill_faq_slugs`.`twill_faq_id` in (1) and `twill_faq_slugs`.`deleted_at` is null
        900μstwenty4_siteFaqItem.php#15
        Backtrace
        • 20. app/View/Components/FaqItem.php:15
        • 21. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 22. view::site.blocks.faq:7
        • 24. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 25. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `twill_faqs` where exists (select * from `twill_faq_slugs` where `twill_faqs`.`id` = `twill_faq_slugs`.`twill_faq_id` and `slug` = 'can-you-help-me-with-my-examquiztest' and `active` = 1 and `locale` = 'en' and `twill_faq_slugs`.`deleted_at` is null) and `twill_faqs`.`deleted_at` is null limit 1
        940μstwenty4_siteFaqItem.php#15
        Bindings
        • 0: can-you-help-me-with-my-examquiztest
        • 1: 1
        • 2: en
        Backtrace
        • 15. app/View/Components/FaqItem.php:15
        • 16. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 17. view::site.blocks.faq:24
        • 19. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 20. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `twill_faq_slugs` where `twill_faq_slugs`.`twill_faq_id` in (2) and `twill_faq_slugs`.`deleted_at` is null
        890μstwenty4_siteFaqItem.php#15
        Backtrace
        • 20. app/View/Components/FaqItem.php:15
        • 21. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 22. view::site.blocks.faq:24
        • 24. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 25. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `twill_faqs` where exists (select * from `twill_faq_slugs` where `twill_faqs`.`id` = `twill_faq_slugs`.`twill_faq_id` and `slug` = 'how-much-will-it-cost' and `active` = 1 and `locale` = 'en' and `twill_faq_slugs`.`deleted_at` is null) and `twill_faqs`.`deleted_at` is null limit 1
        950μstwenty4_siteFaqItem.php#15
        Bindings
        • 0: how-much-will-it-cost
        • 1: 1
        • 2: en
        Backtrace
        • 15. app/View/Components/FaqItem.php:15
        • 16. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 17. view::site.blocks.faq:41
        • 19. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 20. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `twill_faq_slugs` where `twill_faq_slugs`.`twill_faq_id` in (3) and `twill_faq_slugs`.`deleted_at` is null
        860μstwenty4_siteFaqItem.php#15
        Backtrace
        • 20. app/View/Components/FaqItem.php:15
        • 21. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 22. view::site.blocks.faq:41
        • 24. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 25. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `twill_faqs` where exists (select * from `twill_faq_slugs` where `twill_faqs`.`id` = `twill_faq_slugs`.`twill_faq_id` and `slug` = 'what-kind-of-payments-do-you-accept' and `active` = 1 and `locale` = 'en' and `twill_faq_slugs`.`deleted_at` is null) and `twill_faqs`.`deleted_at` is null limit 1
        920μstwenty4_siteFaqItem.php#15
        Bindings
        • 0: what-kind-of-payments-do-you-accept
        • 1: 1
        • 2: en
        Backtrace
        • 15. app/View/Components/FaqItem.php:15
        • 16. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 17. view::site.blocks.faq:58
        • 19. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 20. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      • select * from `twill_faq_slugs` where `twill_faq_slugs`.`twill_faq_id` in (4) and `twill_faq_slugs`.`deleted_at` is null
        890μstwenty4_siteFaqItem.php#15
        Backtrace
        • 20. app/View/Components/FaqItem.php:15
        • 21. vendor/laravel/framework/src/Illuminate/View/Component.php:102
        • 22. view::site.blocks.faq:58
        • 24. vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 25. vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
      App\Models\Subject
      87Subject.php
      App\Models\SubjectCat
      11SubjectCat.php
      App\Models\User\Tutor
      6Tutor.php
      App\Models\HomeworkLibrary\HomeworkLibrary
      6HomeworkLibrary.php
      App\Models\Twill\Slugs\TwillFaqSlug
      6TwillFaqSlug.php
      App\Models\Twill\TwillFaq
      4TwillFaq.php
          _token
          A0JbNA0CsCpKGBPtsm7XlmG474tkkOG6ln7OvxSf
          utm_source
          direct
          _previous
          array:1 [ "url" => "https://staging.dev.24houranswers.com/subjects/Computer-Science/Python-Program...
          _flash
          array:2 [ "old" => [] "new" => [] ]
          PHPDEBUGBAR_STACK_DATA
          []
          path_info
          /subjects/Computer-Science/Python-Programming
          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-67f0b07f-71643fb11cd9ad01432ef512" ] "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.222.197.132" ] "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 => "Sat, 05 Apr 2025 04:24:31 GMT" ] "set-cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IkRqdTBhQXVwUDdRQXlpSHdubnhQMGc9PSIsInZhbHVlIjoiaTNVSUhsQitHdTFpRks4T1hXVU8xMXorTGJwNVV1UW16TnI3RUVMbDkwT0Fjd04zTEhBMGMvT0NnaVpMR0dKdTFVSVdVZzZoWGpGdUIvOUpzNzBhdER1eWoxVkptQm5leDUyOGdOYTlteGtaL0piMmxFUm1lc1dJeUxNNko3TnEiLCJtYWMiOiI4MzM0NWEyOWUzNDZlOTQ0MzY3Yzc5NTc5OGJhNDkwYzU4MWYyYTJlYTA1NTI5N2NkNDU4MzY2MjJmYWE4Zjg2IiwidGFnIjoiIn0%3D; expires=Sat, 05 Apr 2025 06:24:31 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; samesite=laxXSRF-TOKEN=eyJpdiI6IkRqdTBhQXVwUDdRQXlpSHdubnhQMGc9PSIsInZhbHVlIjoiaTNVSUhsQitHdTFpRks4T1hXVU8xMXorTGJwNVV1UW16TnI3RUVMbDkwT0Fjd04zTEhBMGMvT0NnaVpMR0dKdTFVSVdVZ" 1 => "24houranswers_session=eyJpdiI6Ikx2OGpObkVDUW5hd1l0TlgxTnFCY0E9PSIsInZhbHVlIjoiQVAzUkVXZUV5QnF0UkJIM0tpSWdERFZHbnN3ckRieVNEQW9JcHJTNnBEdkEzNnJFaVVOVnFvN0FHblVPQTVoL3o3SGhYSkRkR2xtSVU4Z0liLzJ0R1ZKbUdTN0NlWkVZRGxYejBCOUhZYUNkL3VoN2h0OGhsam1vcG5GWXZHVTgiLCJtYWMiOiJkYWY3MzhmYmVmMDRmOWVlNzEyMjI0ZGM2MTlmYWNkZTQzODcwN2NiMDA5ODk1YWZkMWRlODNhYzlhYTgwOTM0IiwidGFnIjoiIn0%3D; expires=Sat, 05 Apr 2025 06:24:31 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; httponly; samesite=lax24houranswers_session=eyJpdiI6Ikx2OGpObkVDUW5hd1l0TlgxTnFCY0E9PSIsInZhbHVlIjoiQVAzUkVXZUV5QnF0UkJIM0tpSWdERFZHbnN3ckRieVNEQW9JcHJTNnBEdkEzNnJFaVVOVnFvN0FHblVPQT" ] "Set-Cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IkRqdTBhQXVwUDdRQXlpSHdubnhQMGc9PSIsInZhbHVlIjoiaTNVSUhsQitHdTFpRks4T1hXVU8xMXorTGJwNVV1UW16TnI3RUVMbDkwT0Fjd04zTEhBMGMvT0NnaVpMR0dKdTFVSVdVZzZoWGpGdUIvOUpzNzBhdER1eWoxVkptQm5leDUyOGdOYTlteGtaL0piMmxFUm1lc1dJeUxNNko3TnEiLCJtYWMiOiI4MzM0NWEyOWUzNDZlOTQ0MzY3Yzc5NTc5OGJhNDkwYzU4MWYyYTJlYTA1NTI5N2NkNDU4MzY2MjJmYWE4Zjg2IiwidGFnIjoiIn0%3D; expires=Sat, 05-Apr-2025 06:24:31 GMT; domain=.24houranswers.com; path=/XSRF-TOKEN=eyJpdiI6IkRqdTBhQXVwUDdRQXlpSHdubnhQMGc9PSIsInZhbHVlIjoiaTNVSUhsQitHdTFpRks4T1hXVU8xMXorTGJwNVV1UW16TnI3RUVMbDkwT0Fjd04zTEhBMGMvT0NnaVpMR0dKdTFVSVdVZ" 1 => "24houranswers_session=eyJpdiI6Ikx2OGpObkVDUW5hd1l0TlgxTnFCY0E9PSIsInZhbHVlIjoiQVAzUkVXZUV5QnF0UkJIM0tpSWdERFZHbnN3ckRieVNEQW9JcHJTNnBEdkEzNnJFaVVOVnFvN0FHblVPQTVoL3o3SGhYSkRkR2xtSVU4Z0liLzJ0R1ZKbUdTN0NlWkVZRGxYejBCOUhZYUNkL3VoN2h0OGhsam1vcG5GWXZHVTgiLCJtYWMiOiJkYWY3MzhmYmVmMDRmOWVlNzEyMjI0ZGM2MTlmYWNkZTQzODcwN2NiMDA5ODk1YWZkMWRlODNhYzlhYTgwOTM0IiwidGFnIjoiIn0%3D; expires=Sat, 05-Apr-2025 06:24:31 GMT; domain=.24houranswers.com; path=/; httponly24houranswers_session=eyJpdiI6Ikx2OGpObkVDUW5hd1l0TlgxTnFCY0E9PSIsInZhbHVlIjoiQVAzUkVXZUV5QnF0UkJIM0tpSWdERFZHbnN3ckRieVNEQW9JcHJTNnBEdkEzNnJFaVVOVnFvN0FHblVPQT" ] ]
          session_attributes
          0 of 0
          array:5 [ "_token" => "A0JbNA0CsCpKGBPtsm7XlmG474tkkOG6ln7OvxSf" "utm_source" => "direct" "_previous" => array:1 [ "url" => "https://staging.dev.24houranswers.com/subjects/Computer-Science/Python-Programming" ] "_flash" => array:2 [ "old" => [] "new" => [] ] "PHPDEBUGBAR_STACK_DATA" => [] ]