laravel tag

128 questions


1 answers
58 views
0
Syntax error when installing laravel-admin

Installing laravel in the local environment.The installation of larvel-admin failed, although it worked fine in itself.I installed larvel-admin#v1.4.5https://packagist.org/packages/encore/laravel-admi...

2 years ago

1 answers
55 views
0
To view select elements in the Ravel admin form from DB

I'm working on a form with Raveladmin. to build select elements$director=['John' = > 1,'Smith' = > 2,'Kate' = > 3,];$form->select('director', 'Director') ->options($director);The value ...

2 years ago

1 answers
136 views
0
I want to access the Ravel app by specifying the URL of a subdirectory with no butt slash.

I wanted to publish Ravel's project at the URL of the subdirectory because each server requires a certificate for a name-based virtual server.If you set it up and connect with hoge.com/subdir, it will...

2 years ago

2 answers
122 views
0
Understanding Laravel 5.3 Multilingualism

If you want to multilingualize validation messages (this time in Japanese), /resources/lang/ja/validation.phpIn the attributes array of the above files field name =>Japanese name The field name is ...


2 answers
50 views
0
I want to see the characters "Next" and "Prev" in Ravel 5.0's Pagination.

When we do the pagination in Ravel 5.0, we try to link the page with the letters Next and Prev without displaying the page number.Normally, you would use simplePaginate(), but render() displays only t...

2 years ago

1 answers
45 views
0
I want to use Laraveloquant's with to make the column of the destination table a where condition.

·Table ConfigurationThe item is the article table and the channel is the site table.The channel versus item is one-to-many.item:article tablechannel:site tableWhat I want to do is to get articles for ...

2 years ago

1 answers
49 views
0
How do I pass my own parameters to Middleware in Ravel 5.0?

Ravel 5.1 introduces a new Middleware Parameters feature that allows you to pass your own parameters to Middleware, but due to PHP version requirements, you are forced to use Ravel 5.0.I am trying to ...

2 years ago

1 answers
47 views
0
Can I see the number of error lines in laravel 4.2?

I use laravel 4.2.If there is an error in view, etc., Trying to get property of non-objectError messages such as are displayed, but the number of lines of error is not displayed.Is it possible to disp...

2 years ago

1 answers
51 views
0
Can I see the number of error lines in laravel 4.2?

I use laravel 4.2.If there is an error in view, etc., Trying to get property of non-objectError messages such as are displayed, but the number of lines of error is not displayed.Is it possible to disp...

2 years ago

2 answers
53 views
0
Schema difference management between production and development environments

In PHP:I would like to have the schema of the table changed in the development environment be reflected programmably in the production environment. What kind of management do you recommend?As I use PH...

2 years ago
« - 4 - »

© 2024 OneMinuteCode. All rights reserved.