@extends('layouts.master') @section('main_content')
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }} ×

@endif @endforeach
@php $data = DB::table('posts') ->where('page', 'Ramadan Rules') ->where('active', 'on') ->first(); @endphp {!! $data->description !!} {{$data->link_title}}
@endsection