Facade \ Ignition \ Exceptions \ ViewException Попытка получить "цену" свойства не-объекта - PullRequest
0 голосов
/ 05 мая 2020

'это мой контроллер' 'мне нужна помощь, когда я нажимаю на объект, я хочу получить данные строки из phpmyadmin, спасибо всем'

publi c function store (Request $ request) {

    $this->middleware('auth');


    $tours = new tour();

    $tours->name=$request->input('name');
    $tours->date=$request->input('date');
    $tours->price=$request->input('price');
    $tours->hotel=$request->input('hotel');
    $tours->created_at=$request->input('created_at');
    $tours->service=$request->input('service');
    $tours->some=$request->input('some');


    if($request->hasFile('picture')){
        $file=$request->file('picture');
        $extension =$file->getClientOriginalName();
        $filename =time() .'.'.$extension;
        $file->move(public_path('images'),$filename);
        $tours->picture=$filename;

    }

    $tours->save();
    return redirect('admin/tour');       
}

'это мой взгляд'

                    <div class="bc" style=" border-radius: 4px; width: 70%; height:45rem;">
                            <h4 style="text-align: center; position: relative; top:15px;">Tur Haqqında Məlumat</h4>
                            <strong style=" position: relative; top:15px;">Qiymət</strong>
                            <p style=" position: relative; top:15px;  width: 100%; font-weight: 400; font-family: 'Times New Roman', Times, serif;" name='price'>{{$tour->price}} AZN</p>
                            <hr/>

1 Ответ

0 голосов
/ 05 мая 2020

Вам необходимо передать $tours вашему представлению:

return redirect('admin/tour', ['tour'=> $tours]);    

Кстати, я бы использовал $tour вместо версии $tours во множественном числе, которую вы сейчас используете в своем контроллере. .

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...