Coder Social home page Coder Social logo

Comments (4)

ivanvermeyen avatar ivanvermeyen commented on August 22, 2024

Hi,

Before I start bug hunting: any chance it has something to do with using {$this->serviceCategory->id} within single quotes instead of double quotes?

If not, I'll try to reproduce it in a test. 👍

from laravel-unique-translation.

AjithLalps avatar AjithLalps commented on August 22, 2024

like this 'name.*' => 'required|string|min:1|max:255|unique_translation:service_categories,name,' . '{$this->serviceCategory->id}',?

from laravel-unique-translation.

AjithLalps avatar AjithLalps commented on August 22, 2024

It worked after updating the rule,route and function like below.
FormRequest

'name.*' => 'required|string|min:1|max:255|unique_translation:service_categories,name,' . $this->id,

web.php(route file)

Route::put('service_category/{id}', 'ServiceCategoriesController@update')
            ->name('service_categories.service_category.update')->where('id', '[0-9]+');

controller

public function update($id, ServiceCategoriesFormRequest $request)
{
....
}

but why your example not working?

from laravel-unique-translation.

ivanvermeyen avatar ivanvermeyen commented on August 22, 2024

Hi,

In PHP you can do this:

$str = "A string containing a {$variable}";

But not this (single quotes around the string):

$str = 'A string containing a {$variable}';

So this should work for you:

'name.*' => "required|string|min:1|max:255|unique_translation:service_categories,name,{$this->serviceCategory->id}",

from laravel-unique-translation.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.