laravel - сторінка 3

Захист CSRF від Laravel
Повною формою CSRF є фальсифікація міжсайтових запитів. Це один із типів онлайн-атак, коли зловмисник надсилає запити як авторизований користувач сист...
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...
Generating a HTML Link to a Named Route
Problem You want to generate a link to one of your routes. Solution Use the HTML::linkRoute() method. The only required argument is the first one, the...
Changing Your Authentication Model
Problem You need the change the authentication model from the default User. Your application is using namespaces or you want to use a differently name...
Зміна таблиці автентифікації
Проблема Ви хочете, щоб користувачі вашої програми були в іншій таблиці, ніж користувачі. Ваша програма використовує автентифікацію бази даних і повин...
Створення поля введення форми
Проблема Ви хочете створити поле введення форми. Замість того, щоб писати HTML-каталог, ви хочете використовувати фасад форми Laravel. Рішення Викорис...
Визначення, чи існує файл
Проблема Ви хочете перевірити, чи існує файл. Ви знаєте, що можете використовувати PHP file_exists () метод, але хочу зробити це способом Ларавеля. Рі...
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...