Question
Instructions:

Create a web browser that can have multiple “tabs”. Each page will be loaded by taking a user supplied URL, fetching the (HTML) data from the specified URL, and then loading the information in a WebView. Your application must use fragments, with each fragment containing its own WebView. Your app will also use the activity AppBar, and it will contain (at least) 3 buttons: New, Previous, and Forward. Clicking the New button creates a new tab (browser fragment) and places it on top, awaiting the user's URL. The Previous and Next buttons will cycle through the next and previous fragments.

Each fragment will also have a Next and Previous button (you may want to use difference images on the buttons to differentiate them) to navigate back and forward among pages viewed in that specific browser fragment (the same Back and Forward function of a conventional web browser).

Since you will need to navigate back and forth among your browser windows (fragments), you will not be able to rely solely on the FragmentManager (the fragment manager operates as a stack, which means you would lose fragments when they were popped). You will need to implement some other data structure to assist in the management of your fragments. This structure can be implemented in various ways, such as an ArrayList (e.g. ArrayList<Fragment>). In addition to maintaining the list of browser windows, you will use the ViewPager and FragmentStatePagerAdapter to facilitate moving among previously opened browser windows using a swipe function.
The FragmentStatePagerAdapter allows you to easily implement swipe-to-switch functionality for your browser fragments.

1. Familiarize yourself with the WebView widget as well as the ViewPager and FragmentStatePagerAdapter.

2. Add the following permission request line to your AndroidManifest.xml as a child of the
<manifest> tag as follows:

<manifest xmlns:android="..." package="...">

<uses-permission android:name="android.permission.INTERNET"/>

This will allow your application to access the internet (it’s a web browser after all).

3. Design the layout for your main activity to contain an EditText (to get the URL), and a Button (the Go button) aligned at the top of the screen as in a traditional web browser.

The EditText will allow the user to enter a URL, the button will be used to initiate the fetch process

4. Your browser fragments should be designed as follows:

1. Create a layout for your fragment containing a WebView.

The WebView will be used to display the downloaded content.

2. When the user clicks the Go button in the activity, load the URL typed into the activity’s EditText in the fragment’s WebView object using its loadURL() method.

3. When the user switches from one fragment to another (fragment1 to fragment2), fragment1 must remember its URL (if it had one) and it should be displayed in the activity’s EditText if we navigate back to fragment1. It’s OK if fragment1’s WebView has to be reloaded, but the URL should be remembered and displayed to the user in the activity, and the webview reload should be done automatically (i.e. the user should not have to click Go a second time).

5. Create and upload a signed APK along with an archive of your Android Studio project (or a GitHub link)
Considerations:
▪ You can enable JavaScript in your browser by making a call to:

webView.getSettings().setJavaScriptEnabled(true);
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.

public class WebViewFragment extends Fragment {
    // TODO: Rename parameter arguments, choose names that match
    // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
    private static final String ARG_PARAM1 = "param1";

    // List of visited url within the fragment
    // Each fragment will have its own list of visited urls.
    private ArrayList<CharSequence> lstUrls;

    // Current visited url position. This position will be
    // updated by the back/next buttons.
    private int position;

    private Button btnBack;

    private Button btnNext;

    private OnFragmentInteractionListener mListener;
    private WebView webView;

    public WebViewFragment() {
       // Required empty public constructor
       lstUrls = new ArrayList<>();
    }

    /**
    * Use this factory method to create a new instance of
    * this fragment using the provided parameters.
    *
    * @param param Parameter 1.
    * @return A new instance of fragment WebViewFragment.
    */
    // TODO: Rename and change types and number of parameters
    public static WebViewFragment newInstance(String param) {
       WebViewFragment fragment = new WebViewFragment();
       Bundle args = new Bundle();
       args.putString(ARG_PARAM1, param);
       fragment.setArguments(args);
       return fragment;
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
    }

    @Override
    public void onSaveInstanceState(@NonNull Bundle outState) {
       super.onSaveInstanceState(outState);
       // Saving the list of visited urls, when the fragment goes
       // to background
       outState.putCharSequenceArrayList("urls", lstUrls);
       // Also store the position of the last visited url from the list.
       outState.putInt("position", position);
    }

    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
       super.onActivityCreated(savedInstanceState);
       if(savedInstanceState != null) {
            // Getting the list of urls when this fragment become active
            // and visible.
            lstUrls = savedInstanceState.getCharSequenceArrayList("urls");
            // Getting the last visited url, corresponding page
            // will be loaded in the web view.
            position = savedInstanceState.getInt("position");
       }
       //onUrlChange();
    }
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.zip
Purchase Solution
$110.00 $55
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 Version406msRequest Duration45MBMemory UsageGET college-homework-library/{category}/{subject}/{id}Route
    • Booting (282ms)time
    • Application (124ms)time
    • 1 x Booting (69.42%)
      282ms
      1 x Application (30.57%)
      124ms
      • Illuminate\Routing\Events\Routing (1.36ms)
      • Illuminate\Routing\Events\RouteMatched (549μs)
      • Illuminate\Foundation\Events\LocaleUpdated (4.54ms)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (210μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (166μs)
      • Illuminate\Database\Events\ConnectionEstablished (1.17ms)
      • Illuminate\Database\Events\StatementPrepared (7.97ms)
      • Illuminate\Database\Events\QueryExecuted (1.02ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (106μs)
      • eloquent.booting: App\Models\Subject (99μs)
      • eloquent.booted: App\Models\Subject (43μs)
      • Illuminate\Database\Events\StatementPrepared (1.64ms)
      • Illuminate\Database\Events\QueryExecuted (1.18ms)
      • eloquent.retrieved: App\Models\Subject (116μs)
      • eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibraryFile (125μs)
      • eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibraryFile (45μs)
      • Illuminate\Database\Events\StatementPrepared (900μs)
      • Illuminate\Database\Events\QueryExecuted (3.27ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (86μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (14μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (8μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (7μ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.booting: App\Models\SubjectCat (369μs)
      • eloquent.booted: App\Models\SubjectCat (55μs)
      • Illuminate\Database\Events\StatementPrepared (707μs)
      • Illuminate\Database\Events\QueryExecuted (865μs)
      • eloquent.retrieved: App\Models\SubjectCat (95μs)
      • Illuminate\Cache\Events\CacheHit (11.07ms)
      • Illuminate\Cache\Events\CacheMissed (698μs)
      • Illuminate\Database\Events\StatementPrepared (889μs)
      • Illuminate\Database\Events\QueryExecuted (2.04ms)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (93μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (16μ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 (657μs)
      • Illuminate\Database\Events\QueryExecuted (1.03ms)
      • eloquent.retrieved: App\Models\Subject (89μs)
      • Illuminate\Cache\Events\KeyWritten (902μs)
      • Illuminate\Database\Events\StatementPrepared (1.33ms)
      • Illuminate\Database\Events\QueryExecuted (802μs)
      • Illuminate\Database\Events\StatementPrepared (750μs)
      • Illuminate\Database\Events\QueryExecuted (918μs)
      • Illuminate\Database\Events\StatementPrepared (657μs)
      • Illuminate\Database\Events\QueryExecuted (931μs)
      • eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (76μs)
      • Illuminate\Cache\Events\CacheHit (669μs)
      • creating: homework.show (333μs)
      • composing: homework.show (154μs)
      • creating: components.breadcrumbs (305μs)
      • composing: components.breadcrumbs (128μs)
      • Illuminate\Database\Events\StatementPrepared (1.39ms)
      • Illuminate\Database\Events\QueryExecuted (948μs)
      • eloquent.retrieved: App\Models\SubjectCat (168μs)
      • Illuminate\Cache\Events\CacheHit (3.49ms)
      • Illuminate\Cache\Events\CacheHit (145μs)
      • Illuminate\Cache\Events\CacheHit (135μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (140μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (131μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (130μs)
      • Illuminate\Cache\Events\CacheHit (576μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (331μs)
      • Illuminate\Cache\Events\CacheHit (490μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (131μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (126μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (142μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (468μs)
      • Illuminate\Cache\Events\CacheHit (446μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (141μs)
      • Illuminate\Cache\Events\CacheHit (148μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (310μs)
      • Illuminate\Cache\Events\CacheHit (147μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (129μs)
      • Illuminate\Cache\Events\CacheHit (101μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (105μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (118μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (131μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (132μs)
      • Illuminate\Cache\Events\CacheHit (134μs)
      • Illuminate\Cache\Events\CacheHit (146μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (149μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (148μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (134μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (131μs)
      • Illuminate\Cache\Events\CacheHit (150μs)
      • Illuminate\Cache\Events\CacheHit (137μs)
      • Illuminate\Cache\Events\CacheHit (150μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (131μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (128μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (109μs)
      • Illuminate\Cache\Events\CacheHit (133μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (130μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (130μs)
      • Illuminate\Cache\Events\CacheHit (305μs)
      • Illuminate\Cache\Events\CacheHit (308μs)
      • Illuminate\Cache\Events\CacheHit (144μs)
      • Illuminate\Cache\Events\CacheHit (134μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (130μs)
      • Illuminate\Cache\Events\CacheHit (117μs)
      • Illuminate\Cache\Events\CacheHit (142μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (125μs)
      • Illuminate\Cache\Events\CacheHit (107μs)
      • Illuminate\Cache\Events\CacheHit (122μs)
      • Illuminate\Cache\Events\CacheHit (431μs)
      • Illuminate\Cache\Events\CacheHit (210μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (123μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (151μs)
      • Illuminate\Cache\Events\CacheHit (298μs)
      • Illuminate\Cache\Events\CacheHit (343μs)
      • Illuminate\Cache\Events\CacheHit (119μs)
      • Illuminate\Cache\Events\CacheHit (133μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (113μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (94μs)
      • Illuminate\Cache\Events\CacheHit (139μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (97μs)
      • Illuminate\Cache\Events\CacheHit (130μs)
      • Illuminate\Cache\Events\CacheHit (110μs)
      • Illuminate\Cache\Events\CacheHit (132μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (124μs)
      • Illuminate\Cache\Events\CacheHit (106μs)
      • Illuminate\Cache\Events\CacheHit (848μs)
      • Illuminate\Cache\Events\CacheHit (111μs)
      • Illuminate\Cache\Events\CacheHit (121μs)
      • Illuminate\Cache\Events\CacheHit (100μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (127μs)
      • Illuminate\Cache\Events\CacheHit (108μs)
      • Illuminate\Cache\Events\CacheHit (115μs)
      • Illuminate\Cache\Events\CacheHit (101μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (99μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (143μs)
      • Illuminate\Cache\Events\CacheHit (116μs)
      • Illuminate\Cache\Events\CacheHit (139μs)
      • Illuminate\Cache\Events\CacheHit (101μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (96μs)
      • Illuminate\Cache\Events\CacheHit (112μs)
      • Illuminate\Cache\Events\CacheHit (98μs)
      • Illuminate\Cache\Events\CacheHit (120μs)
      • Illuminate\Cache\Events\CacheHit (104μs)
      • Illuminate\Cache\Events\CacheHit (114μs)
      • Illuminate\Cache\Events\CacheHit (101μs)
      • Illuminate\Cache\Events\CacheHit (651μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (198μs)
      • Illuminate\Cache\Events\CacheHit (160μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (156μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (208μs)
      • Illuminate\Cache\Events\CacheHit (168μs)
      • Illuminate\Cache\Events\CacheHit (233μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (158μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (158μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (158μs)
      • Illuminate\Cache\Events\CacheHit (173μs)
      • Illuminate\Cache\Events\CacheHit (157μs)
      • Illuminate\Cache\Events\CacheHit (201μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (179μs)
      • Illuminate\Cache\Events\CacheHit (171μs)
      • Illuminate\Cache\Events\CacheHit (275μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (152μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (159μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (199μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (219μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (200μs)
      • Illuminate\Cache\Events\CacheHit (160μs)
      • Illuminate\Cache\Events\CacheHit (974μs)
      • Illuminate\Cache\Events\CacheHit (173μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (192μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (198μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (191μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (308μs)
      • Illuminate\Cache\Events\CacheHit (168μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (159μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (159μs)
      • Illuminate\Cache\Events\CacheHit (214μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (206μs)
      • Illuminate\Cache\Events\CacheHit (170μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (194μs)
      • Illuminate\Cache\Events\CacheHit (168μs)
      • Illuminate\Cache\Events\CacheHit (188μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (219μs)
      • Illuminate\Cache\Events\CacheHit (176μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (165μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (159μs)
      • Illuminate\Cache\Events\CacheHit (181μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (160μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (159μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (311μs)
      • Illuminate\Cache\Events\CacheHit (189μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (222μs)
      • Illuminate\Cache\Events\CacheHit (178μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (196μs)
      • Illuminate\Cache\Events\CacheHit (174μs)
      • Illuminate\Cache\Events\CacheHit (208μs)
      • Illuminate\Cache\Events\CacheHit (167μs)
      • Illuminate\Cache\Events\CacheHit (190μs)
      • Illuminate\Cache\Events\CacheHit (160μs)
      • Illuminate\Cache\Events\CacheHit (180μs)
      • Illuminate\Cache\Events\CacheHit (157μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (166μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (169μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (148μs)
      • Illuminate\Cache\Events\CacheHit (183μs)
      • Illuminate\Cache\Events\CacheHit (163μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (251μs)
      • Illuminate\Cache\Events\CacheHit (187μs)
      • Illuminate\Cache\Events\CacheHit (202μs)
      • Illuminate\Cache\Events\CacheHit (172μs)
      • Illuminate\Cache\Events\CacheHit (193μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (164μs)
      • Illuminate\Cache\Events\CacheHit (185μs)
      • Illuminate\Cache\Events\CacheHit (162μs)
      • Illuminate\Cache\Events\CacheHit (186μs)
      • Illuminate\Cache\Events\CacheHit (161μs)
      • creating: site.layouts.app (535μs)
      • composing: site.layouts.app (27μs)
      • creating: components.canonical (504μs)
      • composing: components.canonical (117μs)
      • creating: components.open-graph (238μs)
      • composing: components.open-graph (88μs)
      • creating: site.headers.header (333μs)
      • composing: site.headers.header (112μs)
      • Illuminate\Cache\Events\CacheHit (1.86ms)
      • creating: components.footer (80μs)
      • composing: components.footer (100μs)
      • Illuminate\Cache\Events\CacheHit (939μs)
      • Illuminate\Cache\Events\CacheHit (282μs)
      • Illuminate\Cache\Events\CacheHit (252μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (175μs)
      • Illuminate\Cache\Events\CacheHit (217μs)
      • Illuminate\Cache\Events\CacheHit (196μs)
      • Illuminate\Cache\Events\CacheHit (300μs)
      • Illuminate\Cache\Events\CacheHit (329μs)
      • Illuminate\Cache\Events\CacheHit (203μs)
      • Illuminate\Cache\Events\CacheHit (201μs)
      • Illuminate\Cache\Events\CacheHit (184μs)
      • Illuminate\Cache\Events\CacheHit (197μs)
      • Illuminate\Cache\Events\CacheHit (177μs)
      • creating: components.forms.contact-us (287μs)
      • composing: components.forms.contact-us (166μs)
      • creating: components.forms.get-started (164μs)
      • composing: components.forms.get-started (79μs)
      • creating: components.forms.free-tool-download (131μs)
      • composing: components.forms.free-tool-download (66μs)
      • creating: components.forms.claim-free-worksheet (130μs)
      • composing: components.forms.claim-free-worksheet (65μs)
      • creating: components.forms.tutor-subscription-waitlist (125μs)
      • composing: components.forms.tutor-subscription-waitlist (67μs)
      • creating: components.forms.tutor-subscription-join (125μs)
      • composing: components.forms.tutor-subscription-join (63μs)
      • creating: components.forms.tutor-support (126μs)
      • composing: components.forms.tutor-support (69μs)
      • 321 x Illuminate\Cache\Events\CacheHit (17.81%)
        72.38ms
        10 x Illuminate\Database\Events\StatementPrepared (4.15%)
        16.89ms
        10 x Illuminate\Database\Events\QueryExecuted (3.2%)
        13.00ms
        1 x Illuminate\Foundation\Events\LocaleUpdated (1.12%)
        4.54ms
        1 x Illuminate\Routing\Events\Routing (0.33%)
        1.36ms
        1 x Illuminate\Database\Events\ConnectionEstablished (0.29%)
        1.17ms
        1 x Illuminate\Cache\Events\KeyWritten (0.22%)
        902μs
        1 x Illuminate\Cache\Events\CacheMissed (0.17%)
        698μs
        1 x Illuminate\Routing\Events\RouteMatched (0.14%)
        549μs
        1 x creating: site.layouts.app (0.13%)
        535μs
        1 x creating: components.canonical (0.12%)
        504μs
        1 x eloquent.booting: App\Models\SubjectCat (0.09%)
        369μs
        1 x creating: site.headers.header (0.08%)
        333μs
        1 x creating: homework.show (0.08%)
        333μs
        1 x creating: components.breadcrumbs (0.08%)
        305μs
        1 x creating: components.forms.contact-us (0.07%)
        287μs
        2 x eloquent.retrieved: App\Models\SubjectCat (0.06%)
        263μs
        7 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibrary (0.06%)
        243μs
        1 x creating: components.open-graph (0.06%)
        238μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibrary (0.05%)
        210μs
        8 x eloquent.retrieved: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.05%)
        206μs
        2 x eloquent.retrieved: App\Models\Subject (0.05%)
        205μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibrary (0.04%)
        166μs
        1 x composing: components.forms.contact-us (0.04%)
        166μs
        1 x creating: components.forms.get-started (0.04%)
        164μs
        1 x composing: homework.show (0.04%)
        154μs
        1 x creating: components.forms.free-tool-download (0.03%)
        131μs
        1 x creating: components.forms.claim-free-worksheet (0.03%)
        130μs
        1 x composing: components.breadcrumbs (0.03%)
        128μs
        1 x creating: components.forms.tutor-support (0.03%)
        126μs
        1 x creating: components.forms.tutor-subscription-waitlist (0.03%)
        125μs
        1 x eloquent.booting: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.03%)
        125μs
        1 x creating: components.forms.tutor-subscription-join (0.03%)
        125μs
        1 x composing: components.canonical (0.03%)
        117μs
        1 x composing: site.headers.header (0.03%)
        112μs
        1 x composing: components.footer (0.02%)
        100μs
        1 x eloquent.booting: App\Models\Subject (0.02%)
        99μs
        1 x composing: components.open-graph (0.02%)
        88μs
        1 x creating: components.footer (0.02%)
        80μs
        1 x composing: components.forms.get-started (0.02%)
        79μs
        1 x composing: components.forms.tutor-support (0.02%)
        69μs
        1 x composing: components.forms.tutor-subscription-waitlist (0.02%)
        67μs
        1 x composing: components.forms.free-tool-download (0.02%)
        66μs
        1 x composing: components.forms.claim-free-worksheet (0.02%)
        65μs
        1 x composing: components.forms.tutor-subscription-join (0.02%)
        63μs
        1 x eloquent.booted: App\Models\SubjectCat (0.01%)
        55μs
        1 x eloquent.booted: App\Models\HomeworkLibrary\HomeworkLibraryFile (0.01%)
        45μs
        1 x eloquent.booted: App\Models\Subject (0.01%)
        43μs
        1 x composing: site.layouts.app (0.01%)
        27μ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
      10 statements were executed, 4 of which were duplicates, 6 unique. Show only duplicated21.43ms
      • 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` = '44581' limit 1
        8.23mstwenty4_siteHomeworkLibraryController.php#97
        Bindings
        • 0: published
        • 1: 0
        • 2: 44581
        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 (419)
        1.36mstwenty4_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 (44581)
        3.55mstwenty4_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.02mstwenty4_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` <> 44581 and `subject` = 419 and `status` = 'published' and `price` > 0 order by RAND() limit 6
        2.23mstwenty4_siteHomeworkLibraryRepository.php#30
        Bindings
        • 0: 44581
        • 1: 419
        • 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 (419)
        1.02mstwenty4_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` = 44581 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'question' order by `order` asc, `id` asc
        850μstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 44581
        • 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` = 44581 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'teaser' order by `order` asc, `id` asc
        1.02mstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 44581
        • 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` = 44581 and `solutionslibrary_files`.`solutionlib_id` is not null and `publish` = 'solution' order by `order` asc, `id` asc
        1.05mstwenty4_siteHomeworkLibrary.php#260
        Bindings
        • 0: 44581
        • 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
        1.1mstwenty4_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
      App\Models\HomeworkLibrary\HomeworkLibraryFile
      8HomeworkLibraryFile.php
      App\Models\HomeworkLibrary\HomeworkLibrary
      7HomeworkLibrary.php
      App\Models\Subject
      2Subject.php
      App\Models\SubjectCat
      2SubjectCat.php
          _token
          8kCHedVwSaq6DOXuJQgHuczfaV5Tmyw5Enwjzvzc
          utm_source
          direct
          redirectUrl
          /college-homework-library/Computer-Science/App-Development/44581
          _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/App-Development/44581
          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-680c53bb-4476bbbe55a204920e66baa6" ] "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.159.83" ] "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, 26 Apr 2025 03:32:11 GMT" ] "set-cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IjgxUEVieVlGOEo2MkxRc25VUjdzZ0E9PSIsInZhbHVlIjoidVVMRzBEbnlEOVBCbUE5ZTVlQ2ZVQ054OFRBeVNBTURoTDdIc01uZ0VDR2d6RFdnNTMyMTZlYTR3ODVzMUxLL0lkRzBXSTRtZ3lIUjFUc3ZvUFJ4TXArWnc3K1JYWkQvY1NxWEZkakJNejE5Z2lGNVNzWkZYeDB6VWNrREpXbWgiLCJtYWMiOiJmNzkwZWM0NWFhNTllZTk1ZjRhZTM0YzdlYTFlMjY4ZjBjY2Y2NGQ3ZDQ0MGMzYTM3Yzc5ZGEyMTk0NmM0ZjJlIiwidGFnIjoiIn0%3D; expires=Sat, 26 Apr 2025 05:32:11 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; samesite=laxXSRF-TOKEN=eyJpdiI6IjgxUEVieVlGOEo2MkxRc25VUjdzZ0E9PSIsInZhbHVlIjoidVVMRzBEbnlEOVBCbUE5ZTVlQ2ZVQ054OFRBeVNBTURoTDdIc01uZ0VDR2d6RFdnNTMyMTZlYTR3ODVzMUxLL0lkRzBXS" 1 => "24houranswers_session=eyJpdiI6IjMrb3pCYkVBYnU0OFVhYmFTVjI5d0E9PSIsInZhbHVlIjoiWEgxb1MrOVJKZDlYYjE3ajhMTzhoV2xYbCtlODlrSEovMzVLSVhHWVM3cFBBRHN2UGRtYmFiTnhVeHNEMzYwRlVzbUplcVRzWXdWTmxDSFhETjRpQi9iNHZ4UzFUUmg4RHNLK1ZEQUp1V2xxM3AybmNjb3VKb1dlZCs5SStiMTEiLCJtYWMiOiJkM2Y5MWY5NDNiYzNhZTU0YTkxYmUxMWFjNWI2MjAwODFjNzc5NWNkNmI2MWQyMTdlMTg2NDg5MGJmZDU4OTA2IiwidGFnIjoiIn0%3D; expires=Sat, 26 Apr 2025 05:32:11 GMT; Max-Age=7200; path=/; domain=.24houranswers.com; httponly; samesite=lax24houranswers_session=eyJpdiI6IjMrb3pCYkVBYnU0OFVhYmFTVjI5d0E9PSIsInZhbHVlIjoiWEgxb1MrOVJKZDlYYjE3ajhMTzhoV2xYbCtlODlrSEovMzVLSVhHWVM3cFBBRHN2UGRtYmFiTnhVeHNEMz" ] "Set-Cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IjgxUEVieVlGOEo2MkxRc25VUjdzZ0E9PSIsInZhbHVlIjoidVVMRzBEbnlEOVBCbUE5ZTVlQ2ZVQ054OFRBeVNBTURoTDdIc01uZ0VDR2d6RFdnNTMyMTZlYTR3ODVzMUxLL0lkRzBXSTRtZ3lIUjFUc3ZvUFJ4TXArWnc3K1JYWkQvY1NxWEZkakJNejE5Z2lGNVNzWkZYeDB6VWNrREpXbWgiLCJtYWMiOiJmNzkwZWM0NWFhNTllZTk1ZjRhZTM0YzdlYTFlMjY4ZjBjY2Y2NGQ3ZDQ0MGMzYTM3Yzc5ZGEyMTk0NmM0ZjJlIiwidGFnIjoiIn0%3D; expires=Sat, 26-Apr-2025 05:32:11 GMT; domain=.24houranswers.com; path=/XSRF-TOKEN=eyJpdiI6IjgxUEVieVlGOEo2MkxRc25VUjdzZ0E9PSIsInZhbHVlIjoidVVMRzBEbnlEOVBCbUE5ZTVlQ2ZVQ054OFRBeVNBTURoTDdIc01uZ0VDR2d6RFdnNTMyMTZlYTR3ODVzMUxLL0lkRzBXS" 1 => "24houranswers_session=eyJpdiI6IjMrb3pCYkVBYnU0OFVhYmFTVjI5d0E9PSIsInZhbHVlIjoiWEgxb1MrOVJKZDlYYjE3ajhMTzhoV2xYbCtlODlrSEovMzVLSVhHWVM3cFBBRHN2UGRtYmFiTnhVeHNEMzYwRlVzbUplcVRzWXdWTmxDSFhETjRpQi9iNHZ4UzFUUmg4RHNLK1ZEQUp1V2xxM3AybmNjb3VKb1dlZCs5SStiMTEiLCJtYWMiOiJkM2Y5MWY5NDNiYzNhZTU0YTkxYmUxMWFjNWI2MjAwODFjNzc5NWNkNmI2MWQyMTdlMTg2NDg5MGJmZDU4OTA2IiwidGFnIjoiIn0%3D; expires=Sat, 26-Apr-2025 05:32:11 GMT; domain=.24houranswers.com; path=/; httponly24houranswers_session=eyJpdiI6IjMrb3pCYkVBYnU0OFVhYmFTVjI5d0E9PSIsInZhbHVlIjoiWEgxb1MrOVJKZDlYYjE3ajhMTzhoV2xYbCtlODlrSEovMzVLSVhHWVM3cFBBRHN2UGRtYmFiTnhVeHNEMz" ] ]
          session_attributes
          0 of 0
          array:6 [ "_token" => "8kCHedVwSaq6DOXuJQgHuczfaV5Tmyw5Enwjzvzc" "utm_source" => "direct" "redirectUrl" => "/college-homework-library/Computer-Science/App-Development/44581" "_previous" => array:1 [ "url" => "https://staging.dev.24houranswers.com/college-homework-library/Computer-Science/App-Development/44581" ] "_flash" => array:2 [ "old" => [] "new" => [] ] "PHPDEBUGBAR_STACK_DATA" => [] ]