@extends('layouts.master') @section('content')
{{$title}}
My Notice Add Notice

@foreach($notices as $info) @endforeach
{{ $info->name }} {{ str_limit($info->notice_title , 15, '...')}} {{ str_limit($info->description, 30, '...') }}... @if($info->attached == NULL)@else@endif {{ date('d/m/Y', strtotime($info->created_at)) }}
@stop @section('style') @stop @section('script') @if(Session::has('msg'))
×   {{Session::get('msg')}}
@endif @stop