laravel

    0熱度

    1回答

    我工作的搜索功能,我根據用戶輸入查詢,但我沒有得到預期的結果查詢%不給結果 //if user searches walter getting proper response http://localhost:8000/api/v1/search/walter { "data": [ { "id": 1, "first_name": "Walte

    2熱度

    1回答

    如何保存從另一路由發送到我的儀表板的值? 這是儀表盤URL從另一種途徑GET請求,儀表板後的樣子: http://localhost:8000/?lat=45.328686399999995&lng=14.446922599999999 當一些搜索出現這種情況: http://localhost:8000/?ad_search=stackoverflow&ad_sort=recent 我怎

    0熱度

    1回答

    當我嘗試使用自定義域這樣 <?php abstract class TestCase extends Illuminate\Foundation\Testing\TestCase { /** * The base URL to use while testing the application. * * @var string */ protected $baseUrl = 'h

    0熱度

    1回答

    我正在更改laravel 5.3文件夾結構。我所做的基本上是將public文件夾中的所有內容移至根文件夾,然後將public文件夾以外的所有其他文件移至新創建的文件夾 - project。然後我更新index.php中的require路徑,當我嘗試通過XAMPP運行該項目時,出現此錯誤。 我敢肯定,關鍵是設置正確的,因爲我並沒有改變任何東西,但該文件夾結構和路徑,以及該項目在此文件夾結構改變之前的

    0熱度

    2回答

    我想所有的用戶數據和排序按升序排列,然後選擇所需的列 $drivers = Driver::all() ->select('id','first_name','last_name','phone_number','registration_id') ->get(); 現在我得到的所有數據 謝謝

    1熱度

    1回答

    不知道爲什麼它現在爲我工作。 我有兩個表 events - id selections - id - event_id 從我Event模式,我想選擇的關係 class Event extends Model { ... public function selections() { return $this->belongsTo(Select

    0熱度

    1回答

    我很新PHP和Laravel和我有以下prblem。 我必須在使用Laravel作爲框架製作的PHP應用程序上工作。 我必須獲取該應用程序,我有這個工匠 statment啓動它: php artisan serve 的問題是,在shell我obatining此錯誤消息: [email protected] MINGW64 ~/Documents/Betrivius/betriviusExtra

    2熱度

    2回答

    我工作的一個API,我被困在分頁 首先,我稍後發送基於用戶通過限制值僅前10條記錄,我應該送next 10條記錄 所以我這樣做 //search Drivers public function getSearchList($limit) { //dd($limit); $drivers = Driver::paginate($limit) ->select(

    1熱度

    3回答

    如何將laravel數據從控制器傳遞到視圖而不會獲得未定義的變量產品? 控制器: public function postSearch(Request $request){ $text = $request->input('txtsearch'); $products = DB::table('products')->where('title', 'Like', $text)->

    0熱度

    1回答

    我正在構建一個Laravel網站,人們可以將任務發佈到數據庫中。目前,當我通過表單發佈任務時,每個帳戶都可以看到數據。我怎樣才能顯示只發布它的特定人員的數據? My blade file My task controller file 非常感謝你提前。