@extends('layouts.master') @section('title',"Hatırlatmalar") @section('content') @section('head') @endsection

Hatırlatmalar |

@if(session()->has('mesaj_tur'))
{{ session('mesaj') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($notlar as $not) @endforeach
Başlık Açıklama Oluşturan Oluşturulma Tarihi Durum İşlem
{{ $not->baslik }} {!! substr($not->aciklama,0,65) !!}... {{ $not->olusturan }} {{ $not->olusturulma_tarihi }} {{ $not->durum==1 ? 'Tamamlandı' : ($not->durum==2 ? 'İşleme Alındı' : 'Beklemede') }}
Başlık Açıklama Oluşturan Oluşturulma Tarihi Durum İşlem
@endsection @section('footer') @endsection