<?php
// Website routes
Route::get('posts','Posts\PostController@index');
Route::get('posts/{post}','Posts\PostController@show')->where('post', '[^categorie]');
// Kms Routes
Route::resource('kms/posts', 'Posts\Kms\PostController',['as' => 'kms']);
//Explicit route model binding for KMS
Route::model('post', App\KommaApp\Posts\Models\Post::class);