“Laravel Controller im Detail” Code-Antworten

Laravel Controller im Detail

 public function store(PersonalInfoRequest $request)
    {
//        1.validation

        try {
//            except csrf token from form
            $data = request()->except(['_token']);
//            convert lower case value to upper case from array
            $check = array_map('strtoupper', $data);
//            insert all upper case value once in DB
            $value = PersonalInformationModel::Insert($check);

            DB::commit();
        if($value){
            $this->JsonData['status'] = 'success';
            $this->JsonData['url'] = route('reservation.index');
            $this->JsonData['msg'] = 'Succesfully stored Personal details';
            }
        }
        catch(\Exception $e) {

            $this->JsonData['msg'] = 'Something wen`t wrong on server! Please try again';
            $this->JsonData['status'] = $e->getMessage();
            DB::rollback();
        }

        return response()->json($this->JsonData);
    }
ashish basuri

Laravel Controller

php artisan make:controller FormIndexController
husseinpenart

Ähnliche Antworten wie “Laravel Controller im Detail”

Fragen ähnlich wie “Laravel Controller im Detail”

Weitere verwandte Antworten zu “Laravel Controller im Detail” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen