2020-06-29 08:31:24 +00:00
@ extends ( " admin.layout.base " )
@ extends ( " admin.layout.header " )
@ section ( " title " )
2020-08-04 13:29:08 +00:00
Kontakt - Vis
2020-06-29 08:31:24 +00:00
@ endsection
@ section ( " path " )
2020-06-30 09:38:28 +00:00
< a href = " { { route('contacts.index', [ 'contacts' => $contacts ]) }} " class = " text-white " > Vis Kontakter </ a > /
2020-06-29 08:31:24 +00:00
@ endsection
@ section ( " content " )
2020-10-21 07:12:53 +00:00
< style >
. letterSpaceTable {
letter - spacing : 1.2 px ;
}
</ style >
2020-07-01 07:27:18 +00:00
< div class = " row align-items-center " >
2020-08-31 08:57:26 +00:00
@ if ( auth () -> user () -> can ( 'contact.create' ))
< a class = " btn btn-inline btn-sde-blue mb-0 " href = " { { route('contacts.create') }} " >< img src = " { { asset('/images/icons/plus.svg') }} " alt = " Create " > Opret Kontakt </ a >
@ endif
2020-08-20 12:59:22 +00:00
</ div >
2020-11-24 12:14:25 +00:00
< table class = " tbl mt-2 letterSpaceTable fixOverflow " id = " table_id " >
2020-09-18 08:04:33 +00:00
< thead >
2020-06-29 08:31:24 +00:00
< th > Kontakt Navn </ th >
< th > Titel </ th >
< th > E - mail </ th >
< th > Tlf </ th >
2020-08-31 08:57:26 +00:00
@ if ( auth () -> user () -> can ( 'contact.edit' ))
< th style = " width: 1em; " >< img class = " w-100 " src = " { { asset('/images/icons/pencil.svg') }} " alt = " Update " ></ th >
@ endif
@ if ( auth () -> user () -> can ( 'contact.delete' ))
< th style = " width: 1em; " >< img class = " w-100 " src = " { { asset('/images/icons/trashcan.svg') }} " alt = " Delete " ></ th >
@ endif
2020-09-18 08:04:33 +00:00
</ thead >
< tbody >
@ foreach ( $contacts as $contact )
< tr >
< td > {{ $contact -> contactname }} </ td >
< td > {{ $contact -> title }} </ td >
< td > {{ $contact -> email }} </ td >
< td > {{ $contact -> phone }} </ td >
@ if ( auth () -> user () -> can ( 'contact.edit' ))
< td >< a href = " { { route( " contacts . edit " , [ " contact " => $contact ]) }} " >< img class = " w-100 " src = " { { asset('/images/icons/pencil-dark.svg') }} " alt = " Update " ></ a ></ td >
@ endif
@ if ( auth () -> user () -> can ( 'contact.delete' ))
< td >< form method = " post " action = " { { route( " contacts . destroy " , [ " contact " => $contact ]) }} " class = " w-100 nostyle " >
@ csrf
@ method ( " delete " )
< button class = " w-100 nostyle " onclick = " return confirm('Are you sure you want to delete?'); " type = " submit " >< img class = " w-100 cursor-pointer " src = " { { asset('/images/icons/trashcan-dark.svg') }} " alt = " Delete " ></ button >
</ form >
</ td >
@ endif
</ tr >
@ endforeach
</ tbody >
2020-06-29 08:31:24 +00:00
</ table >
2020-09-18 08:04:33 +00:00
@ endsection
@ section ( 'scripts' )
2020-08-04 13:29:08 +00:00
< script >
2020-09-18 08:04:33 +00:00
$ ( document ) . ready ( function () {
$ ( '#table_id' ) . DataTable ({
columnDefs : [
{ orderable : false , targets : [ - 1 , - 2 ] }
]
2020-08-04 13:29:08 +00:00
});
});
</ script >
2020-06-29 08:31:24 +00:00
@ endsection