F
F
Faber Estello2021-01-24 16:27:17
Laravel
Faber Estello, 2021-01-24 16:27:17

Find markup in laravel project?

How to find markup in laravel project?

If I understand correctly:
project ---> resources --> views --> layouts- here is the main markup of the project
project ---> resources --> views --> partials- and here are the pages.

Content

project ---> resources --> views --> partials --> my.blade.php
:

<div class="container">
    <div class="inner">
        <div id="myFeature" member="{{$member['id']}}"></div>
    </div>
</div>


And in the browser it all looks something like this:

<div class="container">
    <div class="inner">
        <div id="myFeature" member="1">

        <h2> Title </h2>
        <div class="row>
            <div class="col-6>
                 <div class="card"> .... </div>
            </div>
            .....
        </div>
       </div>
    </div>
</div>


The question is where to find the markup that goes further, or rather inside, <div id="myFeature" ....with cards?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
G
Gleb Starkov, 2021-01-24
@senselessV7

See where this page's route links to.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question