skip to Main Content

Laravel Blade @props default not over ridden

I just started learning Laravel & Blade. I am having problem with components File: header.blade.php <header class="bg-blue-900 text-white p-4"> <div class="container mx-auto flex justify-between items-center"> <h1 class="text-3xl font-semibold"> <a href="{{ url('/') }}">Workopia</a> </h1> <nav class="hidden md:flex items-center space-x-4"> <x-nav-link url="/"…

VIEW QUESTION

How to return one relationships multiple times with Laravel Eloquent?

I have one-to-may relation: Task -> hasMany(History) History = [{ 'task_id'=>1, 'key'=>1, 'date'=>'2024.12.18', 'data'=>'some log'}, { 'task_id'=>1, 'key'=>2, 'date'=>'2024.12.17', 'data'=>'other log'}, { 'task_id'=>1, 'key'=>1, 'date'=>'2024.12.16', 'data'=>'some other log'}, { 'task_id'=>2, 'key'=>3, 'date'=>'2024.12.15', 'data'=>'log'}, { 'task_id'=>2, 'key'=>2, 'date'=>'2024.12.18', 'data'=>'more log'}] I…

VIEW QUESTION
Back To Top
Search