how to count a calling route from server in laravel - laravel

Is there any ways to count a special route from another folder in server when it is calling in Laravel project?
For more information, I have below link in my laravel project:
The application.apk in in Android folder in server.
<li>
<i class="fab fa-android" aria-hidden="true" style="font-size: 20px;"></i><span>get android app</span>
</li>
how can I count number clicks on this link?

I think you could add a special class that on click, it sums the click calling via Ajax a function inside a controller of laravel. Then it will sum that click wherever you want.

Related

.NET 7 API project can't find images

I began with a standard .NET 7 Web API project that runs fine. I ran into a situation where I need to return a one-off view and I didn't want to create another project to serve views so I added a normal controller to the project with a method to return said view. The view gets returned as expected but none of the resource links work, including images.
So this html:
<a href="index.html" class="logo">
<img src="images/popupshop.svg" alt="">
</a>
returns this view:
This is how I have added the image to the product:
Not sure what else I'm missing?
Adding:
app.UseStaticFiles();
to the Program.cs allowed the paths to work

Hiding login link when user is logged in

I'm almost finished with a project of mine (bare with me I'm a beginner). I want to hide the login link when a role (admin or user) is logged into database. I also want to display a link called "add grade" only when Admin(Manager) is logged in. I am working with spring boot, thymeleaf, spring security5 and h2 & jdbc.
To summarize I want to hide or show HTML based on user's role
UPDATE: it works when I use the <div sec:authorize... for "add grade" link. Now just trying to figure how to hide login link when any role is logged in.
This is my typical code for either including or not including in a navbar:
<li th:ref="navbar-item" sec:authorize="!isAuthenticated()">
<a th:text="'Login'" th:href="#{/login}"/>
</li>
If you mean don't include by "hide", wrap your link in a th:block.
<th:block sec:authorize="!isAuthenticated()">
<a th:text="'Login'" th:href="#{/login}"/>
</th:block>

How can i direct to another page in laravel (AdminLTE Template)?

i already installed template AdminLTE in my laravel app.
but i not totally understand how to direct my slidebar menu to direct page.
ex:
<li><i class='fa fa-calculator'></i> <span>Calculator</span></li>
Set in the href= url that you want redirect to.
<li><i class='fa fa-calculator'></i> <span>Calculator</span></li>

CKEditor : Code Snippet in Ckeditor not working with Laravel 5.3

Need to show saved Code Snippet on CKEditor for editing purpose.
I am using
Code Snippet along with Ckeditor at Laravel 5.3
Everything is OK. I can add Code and upload code in Database. Code also shown in the Target Page.
When I need to edit post, I get the previously uploaded data from the Database to the textarea. Inside the textarea Code Snippet does not show. Here's an Example...
I uploaded this code
<div class="col-md-5 flex-center mainheadright2">
<nav class="nav nav-inline">
<a class="nav-link" href="#">Get Full Access</a>
<a class="nav-link" href="#">Hire Me</a>
</nav>
</div>
While uploading this Code shows properly in the textarea. Also shows properly in Target Page. But while I get this Code again in the textarea to edit, it shows the following.
Get Full Access Hire Me
I want to get code as snippet every time I want to edit post.
What should I do?

using ZURB Foundation with laravel

I am new to laravel so I am not sure how this can be achieved. I am using ZURB Foundation and trying to create a button in the page.
I use linkRoute always to redirect to a named route then redirect to a specific controller action. I have the below:
<body >
<h1 align="center">ShopCon.com</h1><br><br>
<a style="margin-left:50px;" href="{{ HTML::linkRoute('membersaccess', 'Members Access') }}" class="medium success button">Login or Register</a>
</body>
but when I render this, it shows like this
Members Access" class="medium success button">Login or Register
instead of showing the button and text within it and link to named route. How can this be fixed? I read something about macros but unable to clearly understand them or use them to achieve this.
Picture included for reference:
HTML::linkRoute produces an HTML anchor tag.
Since you only want the URL, use URL::route.

Resources