duanchensou8685 2018-08-17 00:33
浏览 48
已采纳

Laravel:插入tarificationtache的条件(语法错误或访问冲突)

I have to insert to 'technicien'='technician' there 'tache'='task' and 'tarification' ='price'

Schema::create('tarificationtaches', function (Blueprint $table) {
        $table->increments('id');
        $table->float('tarif', 8,2);
        $table->integer('tache_id')->unsigned();
        $table->foreign('tache_id')->references('id')->on('taches');
        $table->integer('technicien_id')->unsigned();
        $table->foreign('technicien_id')->references('id')- 
        >on('techniciens');
        $table->datetime('deleted_at')->nullable();
        $table->timestamps();
    });

each techncien have to make there 'tache' then I would like to add a condition in my function to check the insertion if the 'tache' already exists if yes it displays to me existing' tache' if it does not insert in the database

 public function store(Request $request)
    {

    $tarification = new tarificationtache();
    $tarification ->tache_id = $request->input('tache_id');
    $tarification ->Tarif =$request->input('Tarif');
    $tarification->technicien_id = $request->input('technicien_id');
    $tarification->save();

    return redirect('technicien');  
   }

I have tried this function but i have some error

 public function store(Request $request)
  {

    $tarification = new tarificationtache();
    $tarification ->tache_id = $request->input('tache_id');
    $tarification ->Tarif =$request->input('Tarif');
    $tarification->technicien_id = $request->input('technicien_id');
    $tarification = DB::select("select * FROM tarificationtaches where 
     technicien_id = 'technicien_id' and tache_id = input('tache_id')");
        if(request($tarification) > 1)
         echo "Ce technicien a cette tarification";
        else{

        $tarification->save();

 }}

errors

SQLSTATE[42000]: Syntax error or access violation: 1305 FUNCTION 
 projet2.input 
    does not exist (SQL: select * FROM tarificationtaches where 

     technicien_id = 'technicien_id' and tache_id = input('tache_id'))

form to inset tache and tarif

展开全部

  • 写回答

1条回答 默认 最新

  • dongzouh51192 2018-08-17 01:13
    关注

    Based on what I can understand, maybe you need something like this?

    public function store(Request $request)
    {
        $count = tarificationtache::where('technicien_id', $request->input('technicien_id'))
            ->where('tache_id', $request->input('tache_id'))
            ->count();
        if ($count > 0) {
            // TODO: adjust response according to your need
            return response()->json(['error' => "Ce technicien a cette tarification"], 400);
        } else {
            $tarification = new tarificationtache;    
            $tarification->tache_id = $request->input('tache_id');
            $tarification->Tarif = $request->input('Tarif');
            $tarification>technicien_id = $request->input('technicien_id');
            $tarification->save();
            // TODO: adjust response according to your need
            return response()->json($tarification);
        }
    }
    

    You can check the doc for further details regarding count or any other query builder methods in Laravel.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部