I want to generate Dynamic sitemap
for my laravel project. I had already searched in so many sites for an answer. some of them describes it using composer. I didn't get how to do that. and in some other sites they wrote codes to get urls from db in loops. In my project db I didn't saved any urls. my project is a site for doctor and patients.
so is there any one knows how to write php / laravel codes for dynamic sitemap generation
.?
Edit
I'm a newbie to laravel so i'm just unfamiliar with this composer. can anyone please tell me if i download the laravel-sitemap-master.zip from github where i can extract it and saves in my project directory? it will be so much helpful if anyone please answer this.
check https://github.com/RoumenDamianoff/laravel-sitemap
A simple sitemap generator for Laravel 4.
i have used it. works great!
update #1
to clear the confusion, let's take an example.
let's say i have a blog table with
id
,title
,blog
i have the route as,
Route::get('blog/{blog}',['as' => 'blog.show', 'uses' => 'Blog@show'];
first i will fetch the content, by
$blogs = DB::table('blog')->get();
$blogs
will contain the results.i will just loop,
all my blogs are added in the sitemap.