Questions tagged [laravel-5.7]

Laravel 5.7 is the previous stable version of the open-source PHP web framework created by Taylor Otwell. It was released on September 4, 2018. Use it in addition to the [laravel-5] tag if your question is specific to Laravel 5.7. Use the [laravel] tag for general Laravel related questions.

Laravel 5.7 is the previous stable version of Laravel 5. It was released on September 4, 2018.

What is new:

  • Email Verification
  • Guest User Gates / Policies
  • Symfony Dump Server
  • Notification Localization
  • Console Testing
  • URL Generator & Callable Syntax
  • Paginator Links
  • Filesystem Read / Write Streams

Resources:

1390 questions
0
votes
2 answers

yajra/laravel-datatables search is not working with laravel 5.7

Here is join code and assign Datatables Route::get('Productos',function(){ $query = DB::table('producto as e') ->select('e.cod_producto', 'e.nom_producto', 'e.precio_venta', 'd.nombre as nombre_marca', 'j.nombre as nombre_tipo',…
Victor Nuñez
  • 119
  • 2
  • 12
0
votes
1 answer

Creating a item with multiple relations in 1 call

So I have a project table: Schema::create('projects', function (Blueprint $table) { $table->increments('id'); $table->integer('user_id'); $table->string('name'); $table->string('reference')->nullable(); …
user9715413
0
votes
1 answer

Laravel 5.7 Class App\Http\Controllers\Auth\SendsPasswordResetEmails does not exist

I'm trying to implement the reset password function using the built-in function from Laravel 5.7 as i have defined my routes in my web.php. I tried running php artisan route:list , It gave me an exception UPDATE Sorry for the lack of information…
0
votes
1 answer

Route edit,show and delete not working using laravel 5.7

Page not found all I get when trying to get these pages. web.php looks like this Route::resource('admin/roles', 'RoleController'); route:list look like this | GET|HEAD | admin/roles | index | App\Http\Controllers\RoleController@index …
user1435083
0
votes
1 answer

Laravel 5.7, preset bootstrap error. Failed to open stream

I'm trying to use the laravel 5.7 bootstrap4 preset, but have problems using it. Do you guys know why I see this error? Why is the file missing? I have not changed the path to anything. kgp43:~/workspace (master) $ php artisan preset bootstrap In…
Kenneth Poulsen
  • 929
  • 10
  • 25
0
votes
1 answer

How do I get this policy to work in Laravel?

I have a very basic policy
Lee
  • 131
  • 3
  • 9
0
votes
1 answer

Laravel Get data from relationship's relationship table and select column?

I have 3 tables Users Table +----+-------+----------+ | id | email | password | +----+-------+----------+ | 1 | 1 | John | +----+-------+----------+ user_details Table +----+--------------------+------------+-----------+ | id | user_id…
Ahamed
  • 29
  • 2
  • 10
0
votes
2 answers

Generate a route with arbitrary model

I have a generic table.blade.php that manage the build of a table based on the model collection given. How can I, for example, build the edit link foreach items with the right controller. Example: