Laravel Tip - Use @forelse Instead Of @foreach Inside Laravel Blade

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ต.ค. 2024

ความคิดเห็น • 10

  • @dariusdxd
    @dariusdxd 3 ปีที่แล้ว

    Very good tutorial! Thanks!

  • @joyustcian222
    @joyustcian222 3 ปีที่แล้ว

    very informative

  • @dibbyo456
    @dibbyo456 3 ปีที่แล้ว

    Awesome.

  • @sangamsingh6866
    @sangamsingh6866 3 ปีที่แล้ว

    OSM

  • @koxjnk
    @koxjnk ปีที่แล้ว

    Thank you, sir, I have a problem. When I put foreach or forelse, show up the duplicated data. How to solve this? thanks

  • @aymanesadki1716
    @aymanesadki1716 2 ปีที่แล้ว

    hey i have a problem i need ur help when i wright @foreach in visual studio, he dnot recognized @foreach its like im writing normal text what should i do ?

    • @Laratips
      @Laratips  2 ปีที่แล้ว

      You can install "Laravel Blade Snippets" package and may be your issue will be resolved

    • @aymanesadki1716
      @aymanesadki1716 2 ปีที่แล้ว

      @@Laratips ok i will try that because what im trying to do is import data from sql server in my blade.php page this is how it look : @foreach($listado as $1)

      {{$1->id_v}}
      {{$1->username}}
      {{11->mdp}}
      @endforeach
      i try to fixed by writing !! in the tags of data name colon
      {!!$1->id_v!!}
      {!!$1->username!!}
      {!!11->mdp!!}
      but he give me this error :
      syntax error, unexpected token "foreach"

    • @Laratips
      @Laratips  2 ปีที่แล้ว

      You are writing $1 as variable name which is not supported in php.
      And also in one line you are doing 11->mdp.
      After you fix this, it should work

    • @aymanesadki1716
      @aymanesadki1716 2 ปีที่แล้ว

      @@Laratips yes it's working thanks u 😊