@extends('layouts.backend.master')
@section('title', trans('backend.titles.goals'))
@section('styles')
@css('backend/css/sweetalert.min.css')
@css('backend/css/datatables.bundle.css')
@endsection
@section('content')
@include('backend.includes.card.header', ['page' => 'goals'])
@include('backend.goals.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', 'order', 'status','actions'], 'route'=>route('backend.goals.index'), 'pageLength'=>10])
@endsection