@extends('admin.layout.master') @section('content')
@if(Session::has('success'))

{{ Session::get('success') }}

@endif @if(Session::has('errors'))

{{ Session::get('errors') }}

@endif

Agreement Management List

@foreach($agreement as $key=>$val) @endforeach
Creation Date Title Content
{{ date('d-m-Y', strtotime($val->created_at)) }} {{ $val->title }} {!!Illuminate\Support\Str::words($val->content, 5, $end=' ...')!!}
@endsection @section('scripts') @endsection