skip to Main Content

cant install laravel in composer

Tried creating a new project on a corporate proxy and suddenly composer cant create a laravel project. "curl error 28 while downloading https://repo.packagist.org/packages.json: Connection timed out after 10001 millisec onds" been trying different stackoverflow solutions but none of them solves…

VIEW QUESTION

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

Laravel get current route path pattern

Lumen route: +--------+---------------------------+------------+----------------------------------------------------+---------+--------------------------+ | Verb | Path | NamedRoute | Controller | Action | Middleware | +--------+---------------------------+------------+----------------------------------------------------+---------+--------------------------+ | GET | / | | None | Closure | | | POST | /login | | AppHttpControllersAuthAuthController | login | | |…

VIEW QUESTION
Back To Top
Search