skip to Main Content

Laravel 5 fetching data from database using eloquent model – SEO

I have written a member function like :: public function details($article_seo){ $articleDet = Articles::where(function($query) { $query->where('article-seo', '=', $article_seo); }) ->get(); dd($articleDet); } and have used these at the beginning of laravel controller:: namespace AppHttpControllers; use IlluminateHttpRequest; use AppHttpRequests; use Apparticles;…

VIEW QUESTION

Sliders in Laravel – SEO

I am not able to show images in slider one by one, it displays all images at once. My static code is here and it works well with sliding images. <section id="main-slider" class="no-margin" data-ride="carousel"> <div class="carousel slide"> <ol class="carousel-indicators"> <li…

VIEW QUESTION
Back To Top
Search