steven preadly
steven preadly
Explore posts from servers
KPCKevin Powell - Community
Created by steven preadly on 11/3/2024 in #front-end
How can I solve this swiper styling issue in the video ?
any ways i solved the problem iam using Laravel with Vite so some time bundling has some problems with lib that has CSS and JS together ,thank you
15 replies
KPCKevin Powell - Community
Created by steven preadly on 11/3/2024 in #front-end
How can I solve this swiper styling issue in the video ?
this is the html
<section class="highly-ranked-books-section bg-dark mt-sm-5 mb-md-10 px-md-0 py-lg-7 py-sm-5">
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="display-3 text-center">Highly Rated Reads</h1>
<div class="swiper .books">
<div class="swiper-wrapper">
@foreach($books as $book)
<div class="swiper-slide">
<div class="card">
<img src="{{ $book->cover_image }}" class="card-img-top img-fluid" alt="...">
<span id="badge" class="badge text-bg-primary z-1 d-inline">Primary</span>
<div class="card-body">
<h2 class="card-title">{{ $book->title }}</h2>
<div class="d-flex justify-content-between">
<a href="">{{ $book->genre->name }}</a>
<livewire:rating.rating :book="$book"/>
</div>
<p class="card-text">{{ $book->excrept }}</p>
<a href="#" class="btn btn-primary">buy now </a>
</div>
</div>
</div>
@endforeach
</div>
<div cass="swipe-pagination"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
</div>
</div>
</div>
</section>
<section class="highly-ranked-books-section bg-dark mt-sm-5 mb-md-10 px-md-0 py-lg-7 py-sm-5">
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="display-3 text-center">Highly Rated Reads</h1>
<div class="swiper .books">
<div class="swiper-wrapper">
@foreach($books as $book)
<div class="swiper-slide">
<div class="card">
<img src="{{ $book->cover_image }}" class="card-img-top img-fluid" alt="...">
<span id="badge" class="badge text-bg-primary z-1 d-inline">Primary</span>
<div class="card-body">
<h2 class="card-title">{{ $book->title }}</h2>
<div class="d-flex justify-content-between">
<a href="">{{ $book->genre->name }}</a>
<livewire:rating.rating :book="$book"/>
</div>
<p class="card-text">{{ $book->excrept }}</p>
<a href="#" class="btn btn-primary">buy now </a>
</div>
</div>
</div>
@endforeach
</div>
<div cass="swipe-pagination"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
</div>
</div>
</div>
</section>
15 replies
KPCKevin Powell - Community
Created by steven preadly on 11/3/2024 in #front-end
How can I solve this swiper styling issue in the video ?
I can send the css and the html of the component
15 replies
KPCKevin Powell - Community
Created by steven preadly on 11/3/2024 in #front-end
How can I solve this swiper styling issue in the video ?
What happens is that when the page loads the cards came under each other then after the age is fully loaded it becomes normal
15 replies
KPCKevin Powell - Community
Created by steven preadly on 11/3/2024 in #front-end
How can I solve this swiper styling issue in the video ?
The lib is working swiper but the css is what crashed
15 replies
KPCKevin Powell - Community
Created by steven preadly on 11/3/2024 in #front-end
How can I solve this swiper styling issue in the video ?
I am sharing a demo its not regarding the lib it's regarding the css
15 replies
KPCKevin Powell - Community
Created by steven preadly on 11/3/2024 in #front-end
How can I solve this swiper styling issue in the video ?
Why no one answers my questions
15 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Use() Extension Overload
any ways the recommended by the docs is to use the one that takes the HttpContext and a RequestDelegate , and thank you
7 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Use() Extension Overload
this are memory stuff and GC
7 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Use() Extension Overload
what dose this means perf
7 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Factory-based middleware activation in asp.net core
25 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Factory-based middleware activation in asp.net core
is it hard to pass the dependancies to the convinional middlewear
25 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Factory-based middleware activation in asp.net core
ok thank you very much
25 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Factory-based middleware activation in asp.net core
dose this means that i should learn only the facory based ?
25 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Factory-based middleware activation in asp.net core
yes i am still learning both of them
25 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Factory-based middleware activation in asp.net core
when middleware implements the IMiddlewear it used the IMiddlewearFacory interface to create an instance of the middleware and IMiddlewearFacory itself is registerd as a scoped sevice in the DI What makes it easy to inject scoped service in the middlewear that implements the IMiddlewear
25 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Factory-based middleware activation in asp.net core
while the IMiddleWear is can be registerd as transiant or scoped
25 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Factory-based middleware activation in asp.net core
IMiddlewearFactory is registers as a scoped
25 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Factory-based middleware activation in asp.net core
i have two interfaces IMiddlewear and IMiddlewearFactory
25 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Factory-based middleware activation in asp.net core
then i use this middlewear in the program.cs i added it as a transiant while it is already registred as a scoped how come this happiens
25 replies