@extends('layouts.backend.master')
@section('title', trans('backend.titles.stores'))
@section('styles')
@css('backend/css/sweetalert.min.css')
@css('backend/css/datatables.bundle.css')
@endsection
@section('content')
@include('backend.includes.card.header', ['page' => 'stores'])
@include('backend.stores.tables.index')
@endsection
@section('scripts')
@js('backend/js/sweetalert.min.js')
@js('backend/js/datatables.bundle.js')
@include('backend.includes.plugins.datatable',['columns'=>['id','title','district','address','latitude','longitude','status','actions'], 'route'=>route('backend.stores.index'), 'pageLength'=>10])
@endsection