@extends('layouts.app')
@section('content')
@if(session()->has('message'))
{{ session()->get('message') }}
@endif
@if(session()->has('error'))
{{ session()->get('error') }}
@endif
Sl No |
Title |
Language |
Created Date |
Action |
@forelse($all_list as $key => $list)
{{-- {{ chr(64+$loop->index + 1) }} | --}}
{{ $loop->index + 1 }} |
{{ $list->title }} |
@if($list->lang_type =="fr") French @elseif($list->lang_type =="en") English @else Spanish @endif |
{{-- {!! html_entity_decode($list->body) !!} | --}}
{{ $list->created_at->format('d-m-Y') }} |
|
@empty
No record found... |
@endforelse
@endsection