@extends('backend.layouts.master')
@section('title', __('static.categories.categories'))
@push('style')
@endpush
@section('content')
@can('backend.service_category.index')
@include('backend.category.tree', [
'categories' => $categories->all(),
'cat' => isset($cat) ? $cat : null,
])
@endcan
@can('backend.service_category.create')
@endcan
@endsection
@push('js')
@endpush