@extends('employee.employee-layouts.master') @section('content') @php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'http://ip-api.com/json'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $result = curl_exec($ch); $result = json_decode($result); @endphp

{{ __('Attendance') }}

@if (session('failed'))
{{ session('failed') }}
@endif @if (session('success'))
{{ session('success') }}
@endif
@csrf
@csrf
@endsection @push('style') @endpush @push('script') @endpush