@extends('layouts.backend.app') @section('head') @include('layouts.backend.partials.headersection',['title'=>'Manage How it works']) @endsection @section('content')
@if (Session::has('message'))
{{ Session::get('message') }}
@endif
@foreach($howitworks as $howitwork) @php $info = json_decode($howitwork->howitworksMeta->value); @endphp @endforeach
{{ __('Title') }} {{ __('Image') }} {{ __('Created At') }} {{ __('Status') }} {{ __('Action') }}
{{ $howitwork->title }} {{ $info->image }} {{ date('d-m-Y', strtotime($howitwork->created_at)) }} {{ $howitwork->status == 0 ? 'Inactive' : 'Active' }}
{{ $howitworks->links('vendor.pagination.bootstrap-4') }}
@endsection @push('js') @endpush