@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("Items Branch")}}

{{__("All Items Branch")}}

@endsection @section("content") @include("includes.dialog")
@if($items) @foreach($items as $item) @endforeach @endif
{{__("ID")}} {{__("Image")}} {{__("Name")}} {{__("Price")}} {{__("Tax")}} {{__("Category")}} {{__("Descriptions")}} {{__("Gallery")}} {{__("Activation")}}
{{$item->id}} @if($item->getFirstMediaFile()) @endif {{$item->name}} {{$item->price}} {{$item->tax}} {{$item->category->name}} {{$item->getDescriptionAttribute()}}
@endsection @section("scripts") @endsection