blade

    -1熱度

    1回答

    在刀片模板中,您會看到@section,@content,@yield等什麼是刀片指令?它們與PHP或HTML相媲美嗎?在框架中似乎沒有太多關於Laravel語法的解釋。

    0熱度

    1回答

    我該如何確保在刀片中使用更多的foreach,而且內容不會重複多次? $review = Review::orderBy('created_at', 'desc')->paginate(9); $info_games = array(); $games = array(); foreach ($review as $value) { $info_games

    0熱度

    2回答

    我使用Sage 9 WordPress入門主題。 https://github.com/roots/sage 將模板包含在Laravel Blade中並傳遞一些數據後。 @include ('partials.filter-archive', ['taxonomy' => 'project-type']) 我怎麼能在我的模板中使用它partials.filter-archive? {{ $ta

    0熱度

    2回答

    好吧,我有一個小問題。 當用戶點擊一個鏈接時,它會轉到網站/創建/業務這是很好,但如果沒有做任何事情,但鏈接再次點擊,無論出於何種原因它去網站/創建/業務/創建/業務。 <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="

    3熱度

    3回答

    我收到以下錯誤: Class 'HTML' not found (View: C:\WORK\Software\XamppOne\htdocs\APOSTXUI\ContractorsClubField\resources\views\includes_header.blade.php) (View: C:\WORK\Software\XamppOne\htdocs\APOSTXUI\Contra

    0熱度

    1回答

    我嘗試在master.blade.php中爲不同的頁面使用不同的樣式表。當我使用簡單的路線,它的作品。 @if (Request::path() == 'videos/alpes') <link rel="stylesheet" href="{{ URL::asset('/css/style-vid.css') }}" type="text/css" media="all"> @els

    0熱度

    2回答

    我有一個頁面,顯示了企業名稱在數據庫中檢索像這樣的鏈接: 控制器: public function viewBusiness() { // Return our "website" object $business = Business::all(); // Pass the contents of the "html" property to the view return view('

    4熱度

    3回答

    我試圖讓VueJS與Laravel一起工作,併發生了一些奇怪的事情。 我的模板: <div id="tuto"> <p>{{ texte }}</p> </div> 我VueJS腳本: var vm = new Vue({ el: '#tuto', data: { texte: '<span>Mon texte</span>', } })

    0熱度

    1回答

    我現在有這個條件在我的刀片 @if($generatetypeofSummaryofMembers == 'breakdownMemType') some codes here @endif 我怎樣寫,如果我想提出一個以上的值,如「breakdownMemType」,「breakdownStatType '等

    0熱度

    2回答

    我main.blade.php <div class="container"> @yield('content') </div> @extends('main') @section('content') <div class="row"> <h1>this content should show on my main</h1> </div