@extends("admin.layouts.app") @section("styles") @endsection @section("content")
@lang("constants.blog_categoriess")
@forelse($blog_categories as $blog_category) @empty @endforelse
@lang("constants.title") @lang('constants.is_active') @lang('constants.action')
{{$blog_category->title}} @if ($blog_category->is_active) @else @endif {{Form::open(['route'=>["admin.blog-categories.destroy",$blog_category->id],'method'=>"delete"])}} id)}}" class="btn btn-outline btn-sm purple" title="Edit"> @lang("constants.edit") {!! Form::close() !!}
{!! $blog_categories->links()!!}
@lang("constants.blog_categoriess_order")
{{ Form::open(['route' => "admin.blog-categories.order",'class'=>"form-horizontal"]) }} {{ Form::hidden('reorder',"",array('id'=>'reorder')) }}
    @foreach ($items as $item)
  1. {{$item['title']}}
  2. @endforeach
{!! Form::close()!!}
@endsection @section("scripts") @include("admin.layouts.update_attribute") @endsection