@extends('layouts.backend.master')
@section('title', trans('backend.titles.events'))
@section('styles')
@css('backend/css/sweetalert.min.css')
@css('backend/css/datatables.bundle.css')
@endsection
@section('content')
@include('backend.includes.card.header', ['page' => 'events'])
@include('backend.events.tables.index')
@endsection
@section('scripts')
@js('backend/js/sweetalert.min.js')
@js('backend/js/datatables.bundle.js')
@include('backend.includes.plugins.datatable',['columns'=>['id','image','title', 'event_time', 'place', 'type', 'status','actions'], 'route'=>route('backend.events.index')])
@endsection