@extends('layouts.master')
@section('title',"Uygulama Tanımları")
@section('head')
@endsection
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if(session()->has('mesaj'))
{{ session('mesaj') }}
@endif
ID |
Departman Adı |
Value |
İşlem |
@foreach($departmanlar as $departman)
{{ $departman->id }} |
{{ $departman->departmanadi }} |
{{ $departman->departmanadi }} |
|
@endforeach
ID |
Program Adı |
Value |
İşlem |
@foreach($antivirusler as $antivirus)
{{ $antivirus->id }} |
{{ $antivirus->antivirusadi }} |
{{ $antivirus->antivirusadi }} |
|
@endforeach
@endsection
@section('footer')
@endsection