@extends('admin.adminlayout') @section('content')
{{__("Properties list")}}
@foreach($props as $k=>$p) @endforeach
# {{__("Name")}} {{__("Label")}} {{__("Type")}} {{__("Product category")}} -
{{$p->id}} {{$p->name}} {{$p->label}} {{$p->type}} @if(isset($p->category)) @foreach($p->category as $c) {{$c->name}} @endforeach @endif
 
{{$props->links()}}
@endsection