laravel - Strona 3

Laravel Ochrona CSRF
Pełna forma CSRF to Cross-Site Request Forgery. Jest to jeden rodzaj ataku online, w którym atakujący wysyła żądania jako autoryzowany użytkownik do s...
How to Add a New Column to Existing Table in a Migration
Problem I have been having nightmares not being able to add a new column to my users table. Can't seem to figure it out. I tried to edit the migration...
Laravel - Routeresource vs Routecontroller
Problem I read the documentation on the Laravel website, Stack Overflow, and Google however I am not sure that I understand the difference between Rou...
Generowanie linku HTML do nazwanej trasy
Problem Chcesz wygenerować link do jednej ze swoich tras. Rozwiązanie Użyj HTML::linkTrasa() metoda. Jedynym wymaganym argumentem jest pierwszy, nazwa...
Zmiana modelu uwierzytelniania
Problem Musisz zmienić model uwierzytelniania z domyślnego użytkownika. Twoja aplikacja używa przestrzeni nazw lub chcesz użyć modelu o innej nazwie d...
Zmiana tabeli uwierzytelniania
Problem Chcesz, aby użytkownicy Twojej aplikacji byli w innej tabeli niż użytkownicy. Twoja aplikacja korzysta z uwierzytelniania bazy danych i musi u...
Tworzenie pola wejściowego formularza
Problem Chcesz utworzyć pole wejściowe formularza. Zamiast pisać katalog HTML, chcesz użyć fasady Laravel's Form. Rozwiązanie Użyj Formularz::input() ...
Określanie, czy plik istnieje
Problem Chcesz sprawdzić, czy plik istnieje. Wiesz, że możesz używać PHP plik istnieje() metoda, ale chcesz to zrobić w sposób Laravel. Rozwiązanie Uż...
Creating a Nginx VirtualHost
Problem The default Nginx web page shows for your project. You have Nginx installed and have created a Laravel project, but the web page returned by y...