Не могу найти ошибку, мои категории не отображаются по типу, также не выдает laravel ошибку ..
blade. php
@extends('store.template')
@section('content')
<!-- Page Content -->
<div style="margin-top: 70px;" class="container text-center">
<!-- Page Heading -->
<div class="card bg-white ht-50 w-60">
<h1 class="">{{$tipo->tipo}}</h1>
</div>
<div style="margin-top: 10px;" class="row">
@foreach($categories as $category)
<div class="col-lg-4 col-sm-6 mb-4">
<div class="card h-100">
<a href="#">
@if(!empty($category->image))
<img class="card-img-top" src="{{url($category->image)}}" alt="">
@else
<img class="card-img-top" src="http://placehold.it/700x400" alt="">
@endif
</a>
<div class="card-body">
<h4 class="card-title">
<a href="{{ route('category-detail',['slug'=>$category->slug]) }}">{{$category->name}}</a>
</h4>
<p class="card-text">{{$category->descripcion}}</p>
</div>
</div>
</div>
@endforeach
</div>
<!-- /.row -->
</div>
<!-- /.container -->
@stop
контроллер:
public function categoryType($type)
{
$tipo = Tipo::where('tipo',$type)->first();
//dd($tipo->categories);
return view('store.categories-types')->with(['categories'=>$tipo->categories,'tipo'=>$tipo]);
}
в таблице category_type определены категории
table categories:
error:
введите описание изображения здесь