skip to Main Content

Display laravel blade in repository pattern

In my Laravel application, I have the following index function in the PostController.php class PostController extends Controller { private PostRepositoryInterface $postRepository; public function __construct(PostRepositoryInterface $postRepository) { $this->postRepository = $postRepository; } /** * Display a listing of the resource. * *…

VIEW QUESTION
Back To Top
Search